typecase to avoid warning

This commit is contained in:
Love Hornquist Astrand
2010-09-15 22:47:52 -07:00
parent 6a57e6a784
commit cf925c82b8

View File

@@ -72,7 +72,7 @@ dump_vector(const char * msg, uint32_t * v, size_t len)
{
size_t i;
printf("%s: (%d) ", msg, len);
printf("%s: (%d) ", msg, (int)len);
for (i=0; i < len; i++) {
printf("%s%x", (i > 0? " ":""), v[i]);
}