Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
fa001505
Commit
fa001505
authored
Mar 08, 2005
by
marko@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysqld.cc:
main(): add missing parameter to printf(ER(ER_READY),...) call
parent
eb0fc8ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
sql/mysqld.cc
sql/mysqld.cc
+1
-3
No files found.
sql/mysqld.cc
View file @
fa001505
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment