diff options
author | monty@hundin.mysql.fi <> | 2001-12-22 19:08:57 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-12-22 19:08:57 +0200 |
commit | 95a3bfac1d5a3e6e1f9482a936d05f970eafcf46 (patch) | |
tree | 985d9b0d2328bb94cfe71357dd23058745624bc9 /sql/sql_cache.cc | |
parent | f13741c8d3f59023315d4c30b22e5cc99e4cbd03 (diff) | |
download | mariadb-git-95a3bfac1d5a3e6e1f9482a936d05f970eafcf46.tar.gz |
Fix compiler warning
Diffstat (limited to 'sql/sql_cache.cc')
-rw-r--r-- | sql/sql_cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_cache.cc b/sql/sql_cache.cc index 3486ccc18c5..399f0dda04e 100644 --- a/sql/sql_cache.cc +++ b/sql/sql_cache.cc @@ -2783,7 +2783,7 @@ void bins_dump() {} void cache_dump() {} void queries_dump() {} void tables_dump() {} -my_bool check_integrity() {} +my_bool check_integrity() { return 0; } my_bool in_list(Query_cache_block * root, Query_cache_block * point, const char *name) { return 0;} my_bool in_blocks(Query_cache_block * point) { return 0; } |