summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-05-22 19:11:06 +0300
committermonty@hundin.mysql.fi <>2002-05-22 19:11:06 +0300
commitcee1471ff6c316becb9c7e8308177eccf2138dea (patch)
tree7dc30df21813cc17f1c616c7c6eb19d9be0deefa /tools
parentcca212ff05638bcdc79c8823b2247dce25e37910 (diff)
downloadmariadb-git-cee1471ff6c316becb9c7e8308177eccf2138dea.tar.gz
Removed compiler warnings
Diffstat (limited to 'tools')
-rw-r--r--tools/mysqlmanager.c6
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;)