srv0srv.c:

Add a missing space to the output format of SHOW INNODB STATUS; reported by Jocelyn Fournier


innobase/srv/srv0srv.c:
  Add a missing space to the output format of SHOW INNODB STATUS; reported by Jocelyn Fournier
This commit is contained in:
unknown 2004-02-16 09:16:41 +02:00
parent cb6cd9affe
commit 70eef0cb05

View File

@ -2448,7 +2448,7 @@ srv_sprintf_innodb_monitor(
"----------------------\n");
buf += sprintf(buf,
"Total memory allocated " ULINTPF
"; in additional pool allocated" ULINTPF "\n",
"; in additional pool allocated " ULINTPF "\n",
ut_total_allocated_memory,
mem_pool_get_reserved(mem_comm_pool));