bricks: fix clang warnings

* bricks/brick-hash.h, bricks/brick-shmem.h: here.
This commit is contained in:
Etienne Renault 2016-03-15 17:18:33 +01:00
parent 458f506336
commit 01f66642f1
2 changed files with 3 additions and 3 deletions

View file

@ -800,7 +800,7 @@ struct Jenkins {
saw[i] = SpookyHash::Hash32(buf, i, 0);
if (saw[i] != expected[i])
{
printf("%3d: saw 0x%.8x, expected 0x%.8lx\n", i, saw[i], expected[i]);
printf("%3d: saw 0x%.8x, expected 0x%.8lx\n", i, saw[i], (unsigned long) expected[i]);
ASSERT( false );
}
}