From 6eac27a9cd197d450a6f51e80b23a7c584eef5c8 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 16 Mar 2005 16:29:43 -0800 Subject: [PATCH] Fix 64-bit issue with mysql_client_test. (Bug #8047) tests/mysql_client_test.c: Fix data type of variable used in bind --- tests/mysql_client_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=