diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-07-27 12:20:02 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:21:52 +0100 |
commit | ee9f3101fd91cf8906f6da7a483dbad7e9e83c76 (patch) | |
tree | 45fc21f9ba4a4f4e368b2a3b7f95eb42c311766c /src | |
parent | cb6dad6bd21d66cd28b3ef47e3540316ee9913c3 (diff) | |
download | VeraCrypt-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.cpp | 2 |
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 | |||
196 | { | 196 | { |
197 | long wipeCount; | 197 | long wipeCount; |
198 | wxString wipeCountStrDesc = HeaderWipeCount->GetStringSelection(); | 198 | wxString wipeCountStrDesc = HeaderWipeCount->GetStringSelection(); |
199 | wxString wipeCountStr = wipeCountStrDesc.BeforeFirst(wxT("-")); | 199 | wxString wipeCountStr = wipeCountStrDesc.BeforeFirst(wxT('-')); |
200 | if (!wipeCountStr.ToLong(&wipeCount)) | 200 | if (!wipeCountStr.ToLong(&wipeCount)) |
201 | wipeCount = PRAND_HEADER_WIPE_PASSES; | 201 | wipeCount = PRAND_HEADER_WIPE_PASSES; |
202 | return (int) wipeCount; | 202 | return (int) wipeCount; |