1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Fixed compiler warnings

This commit is contained in:
Georg Richter
2017-07-04 13:56:38 +02:00
parent 65368bc95c
commit ea8a31e63a
13 changed files with 23 additions and 24 deletions

View File

@@ -497,7 +497,7 @@ static int test_bug11183(MYSQL *mysql)
FAIL_IF(!rc, "Error expected");
mysql_stmt_reset(stmt);
FAIL_IF(!mysql_stmt_errno(stmt) == 0, "stmt->error != 0");
FAIL_IF(mysql_stmt_errno(stmt) != 0, "stmt->error != 0");
rc= mysql_query(mysql, "create table t1 (a int)");
check_mysql_rc(rc, mysql);