summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormonty@mysql.com <>2006-02-25 13:24:18 +0200
committermonty@mysql.com <>2006-02-25 13:24:18 +0200
commitdd1d40f8f8c306f7310706fed50ccac9c303ab4a (patch)
tree288406f6e3ace5d4c7f1cf508daf0f377101627d /tests
parent82b77cdd901bb36d4be23456bc0c5d171a29e3f7 (diff)
downloadmariadb-git-dd1d40f8f8c306f7310706fed50ccac9c303ab4a.tar.gz
Fixed new introduced bug in binlog.test with --ps-protocol
Diffstat (limited to 'tests')
-rw-r--r--tests/mysql_client_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c
index c265375a263..f58804505d4 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
{