Commit c60c6f3a authored by unknown's avatar unknown

mem0pool.c Removed excessive out of mem warnings


innobase/mem/mem0pool.c:
  Removed excessive out of mem warnings
parent 03fd9b0d
......@@ -234,7 +234,7 @@ mem_pool_fill_free_list(
/* We come here when we have run out of space in the
memory pool: */
if (mem_out_of_mem_err_msg_count % 1000 == 0) {
if (mem_out_of_mem_err_msg_count % 1000000000 == 0) {
/* We do not print the message every time: */
fprintf(stderr,
......
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