[TOOLS] Fix/suppress all MSVC/x64 warnings (#1525)

This commit is contained in:
Timo Kreuzer 2019-04-15 13:29:33 +02:00 committed by Colin Finck
parent 0aed8b09a4
commit f47f45dbdd
No known key found for this signature in database
GPG key ID: 1BA74E70456BA1A9
29 changed files with 140 additions and 37 deletions

View file

@ -345,7 +345,7 @@ do_reg_operation(
0,
Type,
(PVOID)Str,
Size * sizeof(WCHAR));
(ULONG)(Size * sizeof(WCHAR)));
}
else
{
@ -372,7 +372,7 @@ do_reg_operation(
if (Data == NULL)
return FALSE;
DPRINT("setting binary data '%S' len %d\n", ValueName, Size);
DPRINT("setting binary data '%S' len %d\n", ValueName, (ULONG)Size);
InfHostGetBinaryField(Context, 5, Data, Size, NULL);
}
@ -381,7 +381,7 @@ do_reg_operation(
0,
Type,
(PVOID)Data,
Size);
(ULONG)Size);
free(Data);
}