mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 08:07:30 +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
|
@ -500,7 +500,7 @@ PrintName(FILE *fileDest, EXPORT *pexp, PSTRING pstr, int fDeco)
|
|||
{
|
||||
/* Skip leading underscore and remove trailing decoration */
|
||||
pcName++;
|
||||
nNameLength = pcAt - pcName;
|
||||
nNameLength = (int)(pcAt - pcName);
|
||||
}
|
||||
|
||||
/* Print the undecorated function name */
|
||||
|
@ -515,7 +515,7 @@ PrintName(FILE *fileDest, EXPORT *pexp, PSTRING pstr, int fDeco)
|
|||
if (pcDot)
|
||||
{
|
||||
/* First print the dll name, followed by a dot */
|
||||
nNameLength = pcDot - pcName;
|
||||
nNameLength = (int)(pcDot - pcName);
|
||||
fprintf(fileDest, "%.*s.", nNameLength, pcName);
|
||||
|
||||
/* Now the actual function name */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue