[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
No known key found for this signature in database
GPG key ID: 076E7C3D44720826
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;