Fixed printf formatting flag problem on mingw (missed one)

This commit is contained in:
Tomas Lindquist Olsen
2008-12-01 19:51:45 +01:00
parent 2788a2a0f1
commit e5d688834d
2 changed files with 2 additions and 2 deletions

View File

@@ -93,7 +93,7 @@ Identifier *Identifier::generateId(const char *prefix, size_t i)
{ OutBuffer buf;
buf.writestring(prefix);
buf.printf("%zu", i);
buf.printf("%"PRIuSIZE, i);
char *id = buf.toChars();
buf.data = NULL;

View File

@@ -93,7 +93,7 @@ Identifier *Identifier::generateId(const char *prefix, size_t i)
{ OutBuffer buf;
buf.writestring(prefix);
buf.printf("%zu", i);
buf.printf("%"PRIuSIZE, i);
char *id = buf.toChars();
buf.data = NULL;