Commit fa001505 authored by marko@hundin.mysql.fi's avatar marko@hundin.mysql.fi

mysqld.cc:

  main(): add missing parameter to printf(ER(ER_READY),...) call
parent eb0fc8ff
...@@ -3085,9 +3085,7 @@ we force server id to 2, but this MySQL server will not act as a slave."); ...@@ -3085,9 +3085,7 @@ we force server id to 2, but this MySQL server will not act as a slave.");
printf(ER(ER_READY),my_progname,server_version, printf(ER(ER_READY),my_progname,server_version,
((unix_sock == INVALID_SOCKET) ? (char*) "" : mysqld_unix_port), ((unix_sock == INVALID_SOCKET) ? (char*) "" : mysqld_unix_port),
mysqld_port); mysqld_port, MYSQL_COMPILATION_COMMENT);
if (MYSQL_COMPILATION_COMMENT[0] != '\0')
fputs(" " MYSQL_COMPILATION_COMMENT, stdout);
putchar('\n'); putchar('\n');
fflush(stdout); fflush(stdout);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment