mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 02:58:02 -06:00
Linux/MacOSX: fix wrong AskYesNo method parameters use caused by mistake in parenthesis use.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user