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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
00946f43
Commit
00946f43
authored
Apr 16, 2017
by
Michael Widenius
Committed by
Monty
Apr 18, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simple cleanups
Fixed compiler warning Added comment
parent
f2ccc595
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
extra/mysqld_safe_helper.c
extra/mysqld_safe_helper.c
+2
-2
sql/sql_parse.cc
sql/sql_parse.cc
+1
-1
No files found.
extra/mysqld_safe_helper.c
View file @
00946f43
...
...
@@ -14,7 +14,7 @@ void my_exit(int c)
exit
(
c
);
}
void
do_usage
()
void
do_usage
(
void
)
{
printf
(
"Usage:
\n
"
" %s <user> log <filename>
\n
"
...
...
@@ -59,7 +59,7 @@ int main(int argc, char *argv[])
MY_INIT
(
argv
[
0
]);
if
(
argc
<
3
)
do_usage
(
argv
[
0
]
);
do_usage
();
user_info
=
my_check_user
(
argv
[
1
],
MYF
(
0
));
if
(
user_info
?
my_set_user
(
argv
[
1
],
user_info
,
MYF
(
MY_WME
))
...
...
sql/sql_parse.cc
View file @
00946f43
...
...
@@ -3012,7 +3012,7 @@ static int mysql_create_routine(THD *thd, LEX *lex)
return
false
;
}
#ifdef WITH_WSREP
error:
error:
/* Used by WSREP_TO_ISOLATION_BEGIN */
#endif
return
true
;
}
...
...
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