mirror of
https://github.com/reactos/reactos.git
synced 2025-06-26 00:09:42 +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
|
@ -132,7 +132,7 @@ BOOL WINAPIV ShimDbgPrint(SHIM_LOG_LEVEL Level, PCSTR FunctionName, PCSTR Format
|
|||
va_list ArgList;
|
||||
const char* LevelStr;
|
||||
|
||||
if (Level > g_ShimDebugLevel)
|
||||
if ((ULONG)Level > g_ShimDebugLevel)
|
||||
return FALSE;
|
||||
|
||||
switch (Level)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue