diff options
author | Sergei Golubchik <serg@mariadb.org> | 2017-07-08 09:56:28 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-07-08 09:56:28 +0200 |
commit | c9801135c10d132304b03195b0b0ea0141347a45 (patch) | |
tree | 38e50be2f2a0089dbfecc1d14140953ded9149b7 /client/mysqlimport.c | |
parent | 5789934fda10aeba1ea2a562e503767e950a322d (diff) | |
parent | 9e11e055ce1461caecbb30e8300dfdcd48af22f1 (diff) | |
download | mariadb-git-c9801135c10d132304b03195b0b0ea0141347a45.tar.gz |
Merge branch '10.1' into 10.2
Diffstat (limited to 'client/mysqlimport.c')
-rw-r--r-- | client/mysqlimport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqlimport.c b/client/mysqlimport.c index 092ae555318..38b2eb5f672 100644 --- a/client/mysqlimport.c +++ b/client/mysqlimport.c @@ -677,7 +677,7 @@ int main(int argc, char **argv) MYF(0)))) return -2; - for (counter= 0; *argv != NULL; argv++) /* Loop through tables */ + for (; *argv != NULL; argv++) /* Loop through tables */ { pthread_mutex_lock(&counter_mutex); while (counter == opt_use_threads) |