Commit 724d706c authored by unknown's avatar unknown
Browse files

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)
parent e904d0e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ ut_malloc_low(
		"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__