Commit 9baab6f5 authored by Michael Widenius's avatar Michael Widenius

Fixed (wrong) compiler warning

parent 8938ed57
......@@ -1046,7 +1046,7 @@ static inline void dec_counter_for_resize_op(PAGECACHE *pagecache)
("thread %ld", last_thread->next->id));
pagecache_pthread_cond_signal(&last_thread->next->suspend);
}
DBUG_ASSERT((longlong) pagecache->cnt_for_resize_op >= 0);
DBUG_ASSERT(((longlong) pagecache->cnt_for_resize_op) >= 0);
#else
pagecache->cnt_for_resize_op--;
#endif
......
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