diff options
author | unknown <monty@mysql.com> | 2005-01-26 16:07:53 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-01-26 16:07:53 +0200 |
commit | 3c3ca269ec47566ed9a588c52c3671ca4225e53a (patch) | |
tree | 2b90bb4ebf84a63136bafd6b3aae767628e376f5 /innobase/fil | |
parent | a898252a45b97a5bc3200c48bedb7471c588c712 (diff) | |
download | mariadb-git-3c3ca269ec47566ed9a588c52c3671ca4225e53a.tar.gz |
Only enable Innodb extra debugging when using the --debug=full configure option
BUILD/SETUP.sh:
Abort if wrong options
BUILD/compile-pentium64-debug:
Always use full debugging
innobase/fil/fil0fil.c:
Fixed wrong printf() format
Diffstat (limited to 'innobase/fil')
-rw-r--r-- | innobase/fil/fil0fil.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/innobase/fil/fil0fil.c b/innobase/fil/fil0fil.c index 5f71c00aea6..cc1c4a22983 100644 --- a/innobase/fil/fil0fil.c +++ b/innobase/fil/fil0fil.c @@ -685,9 +685,9 @@ fil_try_to_close_file_in_LRU( fputs("InnoDB: cannot close file ", stderr); ut_print_filename(stderr, node->name); fprintf(stderr, - ", because mod_count %lld != fl_count %lld\n", - node->modification_counter, - node->flush_counter); + ", because mod_count %ld != fl_count %ld\n", + (ulong) node->modification_counter, + (ulong) node->flush_counter); } node = UT_LIST_GET_PREV(LRU, node); |