[REACTOS][FDEBUG] Remove unnecessary DLGPROC casts.

This commit is contained in:
Thomas Faber
2017-10-31 12:02:38 +01:00
parent bcbe0dd8cd
commit fe3eb29287
2 changed files with 11 additions and 11 deletions

View File

@@ -218,14 +218,14 @@ DriveDlgProc(
DialogBoxParam(pSetupData->hInstance,
MAKEINTRESOURCE(IDD_BOOTOPTIONS),
hwndDlg,
(DLGPROC)MoreOptDlgProc,
MoreOptDlgProc,
(LPARAM)pSetupData);
break;
case IDC_PARTCREATE:
DialogBox(pSetupData->hInstance,
MAKEINTRESOURCE(IDD_PARTITION),
hwndDlg,
(DLGPROC) PartitionDlgProc);
PartitionDlgProc);
break;
case IDC_PARTDELETE:
break;