diff options
author | marko@hundin.mysql.fi <> | 2005-03-07 09:43:19 +0200 |
---|---|---|
committer | marko@hundin.mysql.fi <> | 2005-03-07 09:43:19 +0200 |
commit | ea4f6ded745baa7331fa3772438be9776dd6351e (patch) | |
tree | 1695cddb6928a9d741430e5ac0c3e39c5ac9b83a /innobase | |
parent | 0f1d024461161f200800626f0020daf048c10cbf (diff) | |
download | mariadb-git-ea4f6ded745baa7331fa3772438be9776dd6351e.tar.gz |
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.c | 2 |
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__ |