Skip to content

Commit

Permalink
htable.cc: fix format warning
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorz authored and franku committed Nov 5, 2019
1 parent c762ff4 commit dedb1b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/lib/htable.cc
Expand Up @@ -256,7 +256,7 @@ void htable::stats()
printf("buckets=%d num_items=%d max_items=%d\n", buckets, num_items,
max_items);
printf("max hits in a bucket = %d\n", max);
printf("total bytes malloced = %lu\n", total_size);
printf("total bytes malloced = %llu\n", total_size);
printf("total blocks malloced = %d\n", blocks);
}

Expand Down

0 comments on commit dedb1b3

Please sign in to comment.