make logging with threads compile on mac os and fix a couple of string literal warnings.

This commit is contained in:
Bernhard Amann 2012-01-30 12:12:14 -08:00
parent e4e770d475
commit 6cc29a7832
3 changed files with 11 additions and 13 deletions

View file

@ -322,7 +322,7 @@ const uint32* mask_addr(const uint32* a, uint32 top_bits_to_keep)
if ( top_bits_to_keep == 0 || top_bits_to_keep > max_bits )
{
reporter->Error("bad address mask value %s", top_bits_to_keep);
reporter->Error("bad address mask value %u", top_bits_to_keep);
return addr;
}