diff options
author | monty@mysql.com <> | 2005-01-26 16:07:53 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2005-01-26 16:07:53 +0200 |
commit | f16b456ddc79c48af9070c79cb1593c0e1f6d989 (patch) | |
tree | 2b90bb4ebf84a63136bafd6b3aae767628e376f5 /innobase/fil | |
parent | a0175a9a6be4f57bdc416305e180b6a2561c1acc (diff) | |
download | mariadb-git-f16b456ddc79c48af9070c79cb1593c0e1f6d989.tar.gz |
Only enable Innodb extra debugging when using the --debug=full configure option
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); |