diff options
author | unknown <monty@hundin.mysql.fi> | 2002-05-22 19:11:06 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-05-22 19:11:06 +0300 |
commit | c8e93fd78762c3436593085ce4d7e0988c0c8671 (patch) | |
tree | 7dc30df21813cc17f1c616c7c6eb19d9be0deefa /tools | |
parent | 3181a6af1b782ccbd23cd12b8e39e8e282b482e7 (diff) | |
download | mariadb-git-c8e93fd78762c3436593085ce4d7e0988c0c8671.tar.gz |
Removed compiler warnings
myisam/mi_write.c:
More DBUG_ statements
Diffstat (limited to 'tools')
-rw-r--r-- | tools/mysqlmanager.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/mysqlmanager.c b/tools/mysqlmanager.c index bd43c6bc0ec..4f166b2f4df 100644 --- a/tools/mysqlmanager.c +++ b/tools/mysqlmanager.c @@ -232,8 +232,8 @@ static int set_exec_param(struct manager_thd* thd, char* args_start, #define HANDLE_DECL(com) static int com (struct manager_thd* thd, char* args_start,char* args_end) #define HANDLE_NOARG_DECL(com) static int com \ - (struct manager_thd* thd, char* __attribute__((unused)) args_start,\ - char* __attribute__((unused)) args_end) + (struct manager_thd* thd, char *args_start __attribute__((unused)),\ + char* args_end __attribute__((unused))) HANDLE_NOARG_DECL(handle_ping); @@ -1063,7 +1063,7 @@ static void log_msg(const char* fmt, int msg_type, va_list args) } static pthread_handler_decl(process_launcher_messages, - __attribute__((unused)) arg) + args __attribute__((unused))) { my_thread_init(); for (;!in_shutdown;) |