Commit 93fb5865 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Fix a truncations warning

parent 2c106716
......@@ -186,7 +186,7 @@ struct Query_cache_query
inline void set_results_ready() { ready= 1; }
inline bool is_results_ready() { return ready; }
inline void increment_hits() { hit_count++; }
inline ulong hits() { return hit_count; }
inline ulonglong hits() { return hit_count; }
void lock_writing();
void lock_reading();
bool try_lock_writing();
......
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