Simple cleanups

Fixed compiler warning
Added comment
This commit is contained in:
Michael Widenius 2017-04-16 17:08:00 +03:00 committed by Monty
parent f2ccc595b6
commit 00946f4331
2 changed files with 3 additions and 3 deletions

View file

@ -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))

View file

@ -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;
}