mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 16:03:00 +00:00
[TOOLS] Fix/suppress all MSVC/x64 warnings (#1525)
This commit is contained in:
parent
0aed8b09a4
commit
f47f45dbdd
29 changed files with 140 additions and 37 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue