From 5a555deb74df9ee9c83441cff65cf63c827de0c6 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Mon, 25 Jan 2016 01:39:58 +0100 Subject: Linux/MacOSX: fix wrong AskYesNo method parameters use caused by mistake in parenthesis use. --- src/Main/Forms/VolumeCreationWizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Main/Forms/VolumeCreationWizard.cpp b/src/Main/Forms/VolumeCreationWizard.cpp index a250625b..201a4379 100755 --- a/src/Main/Forms/VolumeCreationWizard.cpp +++ b/src/Main/Forms/VolumeCreationWizard.cpp @@ -930,7 +930,7 @@ namespace VeraCrypt wxString confirmMsg = LangString["OVERWRITEPROMPT"]; confirmMsg.Replace (L"%hs", L"%s"); - if (!Gui->AskYesNo (wxString::Format (confirmMsg, wstring (SelectedVolumePath).c_str(), false, true))) + if (!Gui->AskYesNo (wxString::Format (confirmMsg, wstring (SelectedVolumePath).c_str()), false, true)) return GetCurrentStep(); } } -- cgit v1.2.3