diff options
author | jimw@mysql.com <> | 2005-03-16 16:29:43 -0800 |
---|---|---|
committer | jimw@mysql.com <> | 2005-03-16 16:29:43 -0800 |
commit | 5ff77dfb54df0f05f50ca57f0a50e69692368b47 (patch) | |
tree | 96151b577ea8467750de9fba769b5bb81d910ddd /tests | |
parent | d6c893bb1cb1eb6ae2c663e0160787fa0436546c (diff) | |
download | mariadb-git-5ff77dfb54df0f05f50ca57f0a50e69692368b47.tar.gz |
Fix 64-bit issue with mysql_client_test. (Bug #8047)
Diffstat (limited to 'tests')
-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 626b90faf73..d3f19391ee5 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -10976,7 +10976,7 @@ static void test_view_insert() MYSQL_STMT *insert_stmt, *select_stmt; int rc, i; MYSQL_BIND bind[1]; - long my_val = 0L; + int my_val = 0; ulong my_length = 0L; long my_null = 0L; const char *query= |