1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 02:58:02 -06:00

Windows Setup: fix compilation error caused by change in declaration of function RestartComputer

This commit is contained in:
Mounir IDRASSI
2016-10-03 22:25:58 +02:00
parent 34f3c055ed
commit e8626ca74a

View File

@@ -1177,7 +1177,7 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
if (bRestartRequired if (bRestartRequired
&& AskYesNo (bUpgrade ? "UPGRADE_OK_REBOOT_REQUIRED" : "CONFIRM_RESTART", hwndDlg) == IDYES) && AskYesNo (bUpgrade ? "UPGRADE_OK_REBOOT_REQUIRED" : "CONFIRM_RESTART", hwndDlg) == IDYES)
{ {
RestartComputer(); RestartComputer(FALSE);
} }
} }