summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorunknown <marko@hundin.mysql.fi>2005-03-07 09:43:19 +0200
committerunknown <marko@hundin.mysql.fi>2005-03-07 09:43:19 +0200
commit724d706cf8f4d774bd84b97a61bc870b966b6f22 (patch)
tree1695cddb6928a9d741430e5ac0c3e39c5ac9b83a /innobase
parente904d0e750c9624981444b6dff7ee62186e82fd9 (diff)
downloadmariadb-git-724d706cf8f4d774bd84b97a61bc870b966b6f22.tar.gz
ut0mem.c:
ut_malloc_low(): fix the fprintf() format string (an extraneous comma split the format into two arguments) innobase/ut/ut0mem.c: ut_malloc_low(): fix the fprintf() format string (an extraneous comma split the format into two arguments)
Diffstat (limited to 'innobase')
-rw-r--r--innobase/ut/ut0mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/ut/ut0mem.c b/innobase/ut/ut0mem.c
index 69d4f586ff7..3e8fd79a739 100644
--- a/innobase/ut/ut0mem.c
+++ b/innobase/ut/ut0mem.c
@@ -93,7 +93,7 @@ retry:
"InnoDB: On FreeBSD check you have compiled the OS with\n"
"InnoDB: a big enough maximum process size.\n"
"InnoDB: Note that in most 32-bit computers the process\n"
- "InnoDB: memory space is limited to 2 GB or 4 GB.\n",
+ "InnoDB: memory space is limited to 2 GB or 4 GB.\n"
"InnoDB: We keep retrying the allocation for 60 seconds...\n",
(ulong) n, (ulong) ut_total_allocated_memory,
#ifdef __WIN__