Improve hex_dump().
[pintos-anon] / src / lib / kernel / bitmap.c
index 3690a3a37c71500efeaa031fdaa2aeff2971c5dc..f1fa1130bbe107a53e862b807bdec3f7e2fa5fdb 100644 (file)
@@ -323,5 +323,5 @@ bitmap_write (const struct bitmap *b, struct file *file)
 void
 bitmap_dump (const struct bitmap *b) 
 {
-  hex_dump (b->bits, byte_cnt (b), false);
+  hex_dump (0, b->bits, byte_cnt (b), false);
 }