VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2014-07-27 12:20:02 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2014-11-08 23:21:52 +0100
commitee9f3101fd91cf8906f6da7a483dbad7e9e83c76 (patch)
tree45fc21f9ba4a4f4e368b2a3b7f95eb42c311766c /src
parentcb6dad6bd21d66cd28b3ef47e3540316ee9913c3 (diff)
downloadVeraCrypt-ee9f3101fd91cf8906f6da7a483dbad7e9e83c76.tar.gz
VeraCrypt-ee9f3101fd91cf8906f6da7a483dbad7e9e83c76.zip
Correct compilation error under Linux introduced in latest commit
Diffstat (limited to 'src')
-rw-r--r--src/Main/Forms/VolumePasswordPanel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main/Forms/VolumePasswordPanel.cpp b/src/Main/Forms/VolumePasswordPanel.cpp
index 10e56f7a..38463728 100644
--- a/src/Main/Forms/VolumePasswordPanel.cpp
+++ b/src/Main/Forms/VolumePasswordPanel.cpp
@@ -196,7 +196,7 @@ namespace VeraCrypt
{
long wipeCount;
wxString wipeCountStrDesc = HeaderWipeCount->GetStringSelection();
- wxString wipeCountStr = wipeCountStrDesc.BeforeFirst(wxT("-"));
+ wxString wipeCountStr = wipeCountStrDesc.BeforeFirst(wxT('-'));
if (!wipeCountStr.ToLong(&wipeCount))
wipeCount = PRAND_HEADER_WIPE_PASSES;
return (int) wipeCount;