diff options
author | unknown <davi@mysql.com/endora.local> | 2008-02-20 22:11:06 -0300 |
---|---|---|
committer | unknown <davi@mysql.com/endora.local> | 2008-02-20 22:11:06 -0300 |
commit | 30750e494ade84fa1be1f5b8bc2d9211dcc0f6f2 (patch) | |
tree | 9169f8265f8c01075da1d459087c3e698a30f9cb | |
parent | 718f920f36de7c18ab86c073049408fe9b1929b8 (diff) | |
download | mariadb-git-30750e494ade84fa1be1f5b8bc2d9211dcc0f6f2.tar.gz |
Post-merge fix to silence a compilation warning introduced
by patch for bug 32265 .
tests/mysql_client_test.c:
Removed unused variable.
-rw-r--r-- | tests/mysql_client_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index bb264ba8a53..25522a88445 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -16159,7 +16159,7 @@ static void test_bug31669() static void test_bug32265() { - int rc, i; + int rc; MYSQL_STMT *stmt; MYSQL_FIELD *field; |