VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2016-10-03 22:25:58 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2016-10-17 18:40:22 +0200
commite8626ca74aae861443db30a5a3117e8e433f1c4a (patch)
tree481d00b467ff458a58af6b193b5d3c22c55690d4
parent34f3c055ed6c0031bdc927305eab06ae94f79b99 (diff)
downloadVeraCrypt-e8626ca74aae861443db30a5a3117e8e433f1c4a.tar.gz
VeraCrypt-e8626ca74aae861443db30a5a3117e8e433f1c4a.zip
Windows Setup: fix compilation error caused by change in declaration of function RestartComputer
-rw-r--r--src/Setup/Wizard.c2
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);
}
}