diff options
author | monty@mysql.com <> | 2006-02-25 21:54:34 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2006-02-25 21:54:34 +0200 |
commit | 1e2e9e28565d97f140f230824a1adfcea475ee34 (patch) | |
tree | 69f6c8a1a1bef870aa8b2cbe729b0fd87fcf1c31 /tests | |
parent | 066c7148fb5243a0533fd7b6edfe948cb1722548 (diff) | |
parent | 54274976e7b4a9a28e94a6f0b4f8d064140248db (diff) | |
download | mariadb-git-1e2e9e28565d97f140f230824a1adfcea475ee34.tar.gz |
Merge mysql.com:/home/my/mysql-5.0
into mysql.com:/home/my/mysql-5.1
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mysql_client_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index 7db643574c5..2706b3c326b 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -14724,9 +14724,9 @@ static void test_bug12744() mysql_close(mysql); - if (rc= mysql_stmt_execute(prep_stmt)) + if ((rc= mysql_stmt_execute(prep_stmt))) { - if (rc= mysql_stmt_reset(prep_stmt)) + if ((rc= mysql_stmt_reset(prep_stmt))) printf("OK!\n"); else { |