Skip to content

Commit

Permalink
Fix a truncations warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Oct 4, 2017
1 parent 2c10671 commit 93fb586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/sql_cache.h
Expand Up @@ -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();
Expand Down

0 comments on commit 93fb586

Please sign in to comment.