diff options
Diffstat (limited to 'src/Main/Forms')
-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 { 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; |