Commit bd095eb0 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix 32 bit compile on linux [t:1926]

git-svn-id: file:///svn/toku/tokudb@13983 c7de825b-a66e-492c-adef-691d508d4ae1
parent 1d543f28
......@@ -33,7 +33,7 @@ static void lc_print_logcursor (TOKULOGCURSOR lc) {
printf(" n_logfiles = %d\n", lc->n_logfiles);
printf(" cur_logfiles_index = %d\n", lc->cur_logfiles_index);
printf(" cur_fp = %p\n", lc->cur_fp);
printf(" cur_lsn = %lu\n", lc->cur_lsn.lsn);
printf(" cur_lsn = %"PRIu64"\n", lc->cur_lsn.lsn);
printf(" last_direction = %d\n", lc->last_direction);
}
......
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