Commit 8f20fb71 authored by Leif Walsh's avatar Leif Walsh Committed by Yoni Fogel

refs #5559 fix print format bug in ftdump


git-svn-id: file:///svn/toku/tokudb@50873 c7de825b-a66e-492c-adef-691d508d4ae1
parent 09ae64c1
......@@ -295,8 +295,8 @@ dump_garbage_stats(int f, FT ft) {
uint64_t total_space = 0;
uint64_t used_space = 0;
toku_ft_get_garbage(ft, &total_space, &used_space);
printf("total_size\t%zu\n", total_space);
printf("used_size\t%zu\n", used_space);
printf("total_size\t%" PRIu64 "\n", total_space);
printf("used_size\t%" PRIu64 "\n", used_space);
}
static uint32_t
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment