diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-05-22 18:19:13 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-05-22 22:58:51 +0200 |
commit | 0d23312886b7787eb4b7de2d788b7de4d021e139 (patch) | |
tree | e152b581c57a87455cfca0f5bdd591d6771117d8 /src/Mount/Mount.c | |
parent | c44c1ac9ce7148c2830191e373ad41a2feeff046 (diff) | |
download | VeraCrypt-0d23312886b7787eb4b7de2d788b7de4d021e139.tar.gz VeraCrypt-0d23312886b7787eb4b7de2d788b7de4d021e139.zip |
Windows: Modifications to build 64-bit versions of VeraCrypt.exe & "VeraCrypt Format.exe".
Diffstat (limited to 'src/Mount/Mount.c')
-rw-r--r-- | src/Mount/Mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index a5849de8..0070916d 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -8115,7 +8115,7 @@ BOOL MountFavoriteVolumes (BOOL systemFavorites, BOOL logOnMount, BOOL hotKeyMou mountOptions.ProtectedHidVolPkcs5Prf = DefaultVolumePkcs5;
else
mountOptions.ProtectedHidVolPkcs5Prf = CmdVolumePkcs5;
- if (DialogBoxParamW (hInst, MAKEINTRESOURCEW (IDD_MOUNT_OPTIONS), MainDlg, MountOptionsDlgProc, (LPARAM) &mountOptions) == IDCANCEL)
+ if (DialogBoxParamW (hInst, MAKEINTRESOURCEW (IDD_MOUNT_OPTIONS), MainDlg, (DLGPROC) MountOptionsDlgProc, (LPARAM) &mountOptions) == IDCANCEL)
{
status = FALSE;
goto skipMount;
|