Fixing a number of reporter calls.

This commit is contained in:
Robin Sommer 2011-10-06 21:26:49 -07:00
parent 9af6c183d2
commit a08c478079
9 changed files with 22 additions and 22 deletions

View file

@ -85,7 +85,7 @@ int expand_escape(const char*& s)
int result;
if ( sscanf(start, "%3o", &result) != 1 )
{
reporter->Warning("bad octal escape: ", start);
reporter->Warning("bad octal escape: %s ", start);
result = 0;
}
@ -104,7 +104,7 @@ int expand_escape(const char*& s)
int result;
if ( sscanf(start, "%2x", &result) != 1 )
{
reporter->Warning("bad hexadecimal escape: ", start);
reporter->Warning("bad hexadecimal escape: %s", start);
result = 0;
}