Commit d4fb9e83 authored by Zardosht Kasheff's avatar Zardosht Kasheff Committed by Yoni Fogel

fix more build errors

git-svn-id: file:///svn/mysql/tokudb-engine/src@14595 c7de825b-a66e-492c-adef-691d508d4ae1
parent 36873d17
......@@ -7,7 +7,6 @@ extern "C" {
#include "misc.h"
#endif
#include "toku_os.h"
#include "inttypes.h"
}
......@@ -515,7 +514,7 @@ static int tokudb_release_savepoint(handlerton * hton, THD * thd, void *savepoin
static bool tokudb_show_data_size(THD * thd, stat_print_fn * stat_print) {
TOKUDB_DBUG_ENTER("tokudb_show_engine_status");
int error;
u_int64_t num_bytes_in_db = 0;
ulonglong num_bytes_in_db = 0;
DB* curr_db = NULL;
DB_TXN* txn = NULL;
DBC* tmp_cursor = NULL;
......@@ -603,7 +602,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: %ull", num_bytes_in_db);
stat_print(
thd,
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