diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-05-17 12:20:33 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-05-22 12:00:13 +0200 |
commit | 330bed0c42ae906d4482db8896b8cb7b2820107b (patch) | |
tree | a8c7d91ce181a89ecaab83de9d31f16a0d8448a0 /src/Common | |
parent | f72125ea71f98d0147bb742b48d1097844949c9e (diff) | |
download | VeraCrypt-330bed0c42ae906d4482db8896b8cb7b2820107b.tar.gz VeraCrypt-330bed0c42ae906d4482db8896b8cb7b2820107b.zip |
Windows: correct typo in help text
Diffstat (limited to 'src/Common')
-rw-r--r-- | src/Common/Cmdline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Cmdline.c b/src/Common/Cmdline.c index 842a1e4c..f15b8d27 100644 --- a/src/Common/Cmdline.c +++ b/src/Common/Cmdline.c @@ -55,7 +55,7 @@ BOOL CALLBACK CommandHelpDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM }
}
- StringCbCatA (tmp, 8192, "\nExamples:\n\nMount a volume as X:\tveracrypt.exe /q /v volume.tc /l X\nDismount a volume X:\tveracrypt.exe /q /d X");
+ StringCbCatA (tmp, 8192, "\nExamples:\n\nMount a volume as X:\tveracrypt.exe /q /v volume.hc /l X\nDismount a volume X:\tveracrypt.exe /q /d X");
SetWindowText (GetDlgItem (hwndDlg, IDC_COMMANDHELP_TEXT), (char*) tmp);
|