From e7620536cf67683a257efee6892e255a6f15fe80 Mon Sep 17 00:00:00 2001 From: liuchang Date: Sat, 8 Nov 2014 11:35:10 -0800 Subject: [PATCH] fix make static_lib error --- util/sst_dump_tool.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/sst_dump_tool.cc b/util/sst_dump_tool.cc index 925dadc7d..f5cc50fa8 100644 --- a/util/sst_dump_tool.cc +++ b/util/sst_dump_tool.cc @@ -416,7 +416,7 @@ void SSTDumpTool::Run(int argc, char** argv) { "------------------------------\n" " %s", table_properties->ToString("\n ", ": ").c_str()); - fprintf(stdout, "# deleted keys: %zd\n", + fprintf(stdout, "# deleted keys: %" PRIu64 "\n", rocksdb::GetDeletedKeys( table_properties->user_collected_properties)); }