diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-05-23 19:26:06 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-05-26 01:38:11 +0200 |
commit | 85e5e383f9b879736d7a793a5dc0f9bce20b8383 (patch) | |
tree | be3657150ecacdf8b52a398479d38996634ffc8c /src/Common/Registry.c | |
parent | a8651ac01420b337ea21ab6c7284c6d04c0330b4 (diff) | |
download | VeraCrypt-85e5e383f9b879736d7a793a5dc0f9bce20b8383.tar.gz VeraCrypt-85e5e383f9b879736d7a793a5dc0f9bce20b8383.zip |
Windows: solve 64-bit compilation warnings after checking that they are harmless.
Diffstat (limited to 'src/Common/Registry.c')
-rw-r--r-- | src/Common/Registry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Common/Registry.c b/src/Common/Registry.c index 07ca6b10..a3fadd32 100644 --- a/src/Common/Registry.c +++ b/src/Common/Registry.c @@ -232,7 +232,7 @@ BOOL WriteLocalMachineRegistryString (char *subKey, char *name, char *str, BOOL return FALSE;
}
- if ((status = RegSetValueEx (hkey, name, 0, expandable ? REG_EXPAND_SZ : REG_SZ, (BYTE *) str, strlen (str) + 1)) != ERROR_SUCCESS)
+ if ((status = RegSetValueEx (hkey, name, 0, expandable ? REG_EXPAND_SZ : REG_SZ, (BYTE *) str, (DWORD) strlen (str) + 1)) != ERROR_SUCCESS)
{
RegCloseKey (hkey);
SetLastError (status);
@@ -252,7 +252,7 @@ void WriteRegistryString (char *subKey, char *name, char *str) 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hkey, &disp) != ERROR_SUCCESS)
return;
- RegSetValueEx (hkey, name, 0, REG_SZ, (BYTE *) str, strlen (str) + 1);
+ RegSetValueEx (hkey, name, 0, REG_SZ, (BYTE *) str, (DWORD) strlen (str) + 1);
RegCloseKey (hkey);
}
|