Commit 3c00096e authored by Barry Perlman's avatar Barry Perlman Committed by Yoni Fogel

Fix build

git-svn-id: file:///svn/mysql/tokudb-engine/src@14597 c7de825b-a66e-492c-adef-691d508d4ae1
parent 55043816
...@@ -6,6 +6,7 @@ extern "C" { ...@@ -6,6 +6,7 @@ extern "C" {
#if defined(_WIN32) #if defined(_WIN32)
#include "misc.h" #include "misc.h"
#endif #endif
#define __STDC_FORMAT_MACROS
#include <inttypes.h> #include <inttypes.h>
#include "toku_os.h" #include "toku_os.h"
} }
...@@ -603,7 +604,7 @@ static bool tokudb_show_data_size(THD * thd, stat_print_fn * stat_print) { ...@@ -603,7 +604,7 @@ static bool tokudb_show_data_size(THD * thd, stat_print_fn * stat_print) {
} }
} }
sprintf(data_amount_msg, "Number of bytes in database: %"PRIu64, num_bytes_in_db); sprintf(data_amount_msg, "Number of bytes in database: %" PRIu64, num_bytes_in_db);
stat_print( stat_print(
thd, thd,
tokudb_hton_name, tokudb_hton_name,
......
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