summaryrefslogtreecommitdiff
path: root/client/mysqlimport.c
diff options
context:
space:
mode:
authormonty@mysql.com/narttu.mysql.fi <>2007-01-29 01:47:35 +0200
committermonty@mysql.com/narttu.mysql.fi <>2007-01-29 01:47:35 +0200
commit410fc81a726d586e67b45beb0406e1e681494ce4 (patch)
tree9a81ea8e9e695584f7915cc104eda630d7b98bc8 /client/mysqlimport.c
parent8a80e36ac3facdfba626fd758b6e4490d3ea9ddf (diff)
downloadmariadb-git-410fc81a726d586e67b45beb0406e1e681494ce4.tar.gz
After merge fixes
Removed a lot of compiler warnings Removed not used variables, functions and labels Initialize some variables that could be used unitialized (fatal bugs) %ll -> %l
Diffstat (limited to 'client/mysqlimport.c')
-rw-r--r--client/mysqlimport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqlimport.c b/client/mysqlimport.c
index c9e21de1b2a..3e054fba308 100644
--- a/client/mysqlimport.c
+++ b/client/mysqlimport.c
@@ -34,7 +34,7 @@
/* Global Thread counter */
-int counter;
+uint counter;
#ifdef HAVE_LIBPTHREAD
pthread_mutex_t counter_mutex;
pthread_cond_t count_threshhold;