mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 18:56:48 +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] )
|
if ( ModuleHandlerInformations[i].cflags && ModuleHandlerInformations[i].cflags[0] )
|
||||||
{
|
{
|
||||||
fprintf ( fMakefile,
|
fprintf ( fMakefile,
|
||||||
"MODULETYPE%d_%sFLAGS:=%s\n",
|
"MODULETYPE%zd_%sFLAGS:=%s\n",
|
||||||
i,
|
i,
|
||||||
"C",
|
"C",
|
||||||
ModuleHandlerInformations[i].cflags );
|
ModuleHandlerInformations[i].cflags );
|
||||||
|
@ -507,7 +507,7 @@ MingwBackend::GenerateGlobalVariables () const
|
||||||
if ( ModuleHandlerInformations[i].cflags && ModuleHandlerInformations[i].cflags[0] )
|
if ( ModuleHandlerInformations[i].cflags && ModuleHandlerInformations[i].cflags[0] )
|
||||||
{
|
{
|
||||||
fprintf ( fMakefile,
|
fprintf ( fMakefile,
|
||||||
"MODULETYPE%d_%sFLAGS:=%s\n",
|
"MODULETYPE%zd_%sFLAGS:=%s\n",
|
||||||
i,
|
i,
|
||||||
"CXX",
|
"CXX",
|
||||||
ModuleHandlerInformations[i].cflags );
|
ModuleHandlerInformations[i].cflags );
|
||||||
|
@ -516,7 +516,7 @@ MingwBackend::GenerateGlobalVariables () const
|
||||||
if ( ModuleHandlerInformations[i].nasmflags && ModuleHandlerInformations[i].nasmflags[0] )
|
if ( ModuleHandlerInformations[i].nasmflags && ModuleHandlerInformations[i].nasmflags[0] )
|
||||||
{
|
{
|
||||||
fprintf ( fMakefile,
|
fprintf ( fMakefile,
|
||||||
"MODULETYPE%d_%sFLAGS:=%s\n",
|
"MODULETYPE%zd_%sFLAGS:=%s\n",
|
||||||
i,
|
i,
|
||||||
"NASM",
|
"NASM",
|
||||||
ModuleHandlerInformations[i].nasmflags );
|
ModuleHandlerInformations[i].nasmflags );
|
||||||
|
|
Loading…
Reference in a new issue