mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
use %zd for SIZE_T, not just %d
svn path=/trunk/; revision=41861
This commit is contained in:
parent
b6f27fe11d
commit
c3ca589de0
1 changed files with 3 additions and 3 deletions
|
@ -498,7 +498,7 @@ MingwBackend::GenerateGlobalVariables () const
|
|||
if ( ModuleHandlerInformations[i].cflags && ModuleHandlerInformations[i].cflags[0] )
|
||||
{
|
||||
fprintf ( fMakefile,
|
||||
"MODULETYPE%d_%sFLAGS:=%s\n",
|
||||
"MODULETYPE%zd_%sFLAGS:=%s\n",
|
||||
i,
|
||||
"C",
|
||||
ModuleHandlerInformations[i].cflags );
|
||||
|
@ -507,7 +507,7 @@ MingwBackend::GenerateGlobalVariables () const
|
|||
if ( ModuleHandlerInformations[i].cflags && ModuleHandlerInformations[i].cflags[0] )
|
||||
{
|
||||
fprintf ( fMakefile,
|
||||
"MODULETYPE%d_%sFLAGS:=%s\n",
|
||||
"MODULETYPE%zd_%sFLAGS:=%s\n",
|
||||
i,
|
||||
"CXX",
|
||||
ModuleHandlerInformations[i].cflags );
|
||||
|
@ -516,7 +516,7 @@ MingwBackend::GenerateGlobalVariables () const
|
|||
if ( ModuleHandlerInformations[i].nasmflags && ModuleHandlerInformations[i].nasmflags[0] )
|
||||
{
|
||||
fprintf ( fMakefile,
|
||||
"MODULETYPE%d_%sFLAGS:=%s\n",
|
||||
"MODULETYPE%zd_%sFLAGS:=%s\n",
|
||||
i,
|
||||
"NASM",
|
||||
ModuleHandlerInformations[i].nasmflags );
|
||||
|
|
Loading…
Reference in a new issue