From ee5ba7642cb68845a4cb07060b50699a58430b27 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 23 Aug 2001 03:05:56 +0800 Subject: Warning fixes client/thread_test.c: Removed unused variables warnings sql/mysqld.cc: Fixed freeing null ptr warnings vio/Makefile.am: Make more test programs to compile --- client/thread_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client') diff --git a/client/thread_test.c b/client/thread_test.c index 4d3ae6e7ddd..41adb23c408 100644 --- a/client/thread_test.c +++ b/client/thread_test.c @@ -19,7 +19,7 @@ #ifndef THREAD -int main(int argc, char **argv) +int main(int argc __attribute__((unused)), char **argv __attribute__((unused))) { printf("This test must be compiled with multithread support to work\n"); exit(1); -- cgit v1.2.1