Fixing a bunch of format strings.

Also leveraging GCC if available to check format specificier.

Closes #567.
This commit is contained in:
Robin Sommer 2011-10-18 17:39:40 -07:00
parent d86525ce61
commit 63b46a0ae2
14 changed files with 38 additions and 31 deletions

View file

@ -951,7 +951,7 @@ int main(int argc, char** argv)
{
reporter->Info("invoked event handlers:");
for ( int i = 0; i < alive_handlers->length(); ++i )
reporter->Info((*alive_handlers)[i]);
reporter->Info("%s", (*alive_handlers)[i]);
}
delete alive_handlers;