Skip to content

Commit c7b95a0

Browse files
committed
Fix for warning
1 parent 011ee3d commit c7b95a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ReClass/Symbols.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -370,14 +370,14 @@ UndecorateSymbolName(
370370
{
371371
if (pfUnDname( outputString, name, maxStringLength - 1, AllocIt, FreeIt, (USHORT)flags ))
372372
{
373-
rc = strlen( outputString );
373+
rc = (DWORD)strlen( outputString );
374374
}
375375
}
376376
}
377377
else
378378
{
379379
strncpy_s( outputString, maxStringLength, "Unable to load msvcrt!__unDName", maxStringLength );
380-
rc = strlen( outputString );
380+
rc = (DWORD)strlen( outputString );
381381
SetLastError( ERROR_MOD_NOT_FOUND );
382382
}
383383

0 commit comments

Comments
 (0)