Fixing some more format strings.

This commit is contained in:
Robin Sommer 2011-04-27 21:31:23 -07:00
parent 714289bd13
commit b01aa66fe6
3 changed files with 5 additions and 5 deletions

View file

@ -127,7 +127,7 @@ void ODesc::Add(int64 i)
else
{
char tmp[256];
sprintf(tmp, "%lld", i);
sprintf(tmp, "%" PRId64, i);
Add(tmp);
}
}
@ -139,7 +139,7 @@ void ODesc::Add(uint64 u)
else
{
char tmp[256];
sprintf(tmp, "%llu", u);
sprintf(tmp, "%" PRIu64, u);
Add(tmp);
}
}