diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-10-03 22:25:58 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-10-17 18:40:22 +0200 |
commit | e8626ca74aae861443db30a5a3117e8e433f1c4a (patch) | |
tree | 481d00b467ff458a58af6b193b5d3c22c55690d4 /src/Setup | |
parent | 34f3c055ed6c0031bdc927305eab06ae94f79b99 (diff) | |
download | VeraCrypt-e8626ca74aae861443db30a5a3117e8e433f1c4a.tar.gz VeraCrypt-e8626ca74aae861443db30a5a3117e8e433f1c4a.zip |
Windows Setup: fix compilation error caused by change in declaration of function RestartComputer
Diffstat (limited to 'src/Setup')
-rw-r--r-- | src/Setup/Wizard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Setup/Wizard.c b/src/Setup/Wizard.c index 8bc64117..f6bb70a4 100644 --- a/src/Setup/Wizard.c +++ b/src/Setup/Wizard.c @@ -1177,7 +1177,7 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa if (bRestartRequired && AskYesNo (bUpgrade ? "UPGRADE_OK_REBOOT_REQUIRED" : "CONFIRM_RESTART", hwndDlg) == IDYES) { - RestartComputer(); + RestartComputer(FALSE); } } |