diff options
author | unknown <heikki@donna.mysql.fi> | 2001-03-07 20:10:50 +0200 |
---|---|---|
committer | unknown <heikki@donna.mysql.fi> | 2001-03-07 20:10:50 +0200 |
commit | c60c6f3a369b54d77aa4622197bef1da6b805b97 (patch) | |
tree | 8666a0ff2a71dcaa0b52e39dc1b856d9b0a32f99 | |
parent | 03fd9b0d1b5a4316b3ecb28ef67bd8b92c983e58 (diff) | |
download | mariadb-git-c60c6f3a369b54d77aa4622197bef1da6b805b97.tar.gz |
mem0pool.c Removed excessive out of mem warnings
innobase/mem/mem0pool.c:
Removed excessive out of mem warnings
-rw-r--r-- | innobase/mem/mem0pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/mem/mem0pool.c b/innobase/mem/mem0pool.c index 2a871b00373..e8c02d812c4 100644 --- a/innobase/mem/mem0pool.c +++ b/innobase/mem/mem0pool.c @@ -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, |