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

compile test_logmax.c on 32 bit linux. closes #1318

git-svn-id: file:///svn/toku/tokudb.1032b@8287 c7de825b-a66e-492c-adef-691d508d4ae1
parent 25fc4b99
......@@ -23,7 +23,7 @@ check_logmax (int max) {
int r = stat(full_fname, &sbuf);
assert(r==0);
if (verbose)
printf("%s is of size %ld\n", ent->d_name, sbuf.st_size);
printf("%s is of size %"PRId64"\n", ent->d_name, (int64_t)sbuf.st_size);
if (sbuf.st_size > max) any_too_big=1;
}
}
......
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