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

Fix of unit test print output format.

This commit is contained in:
Oleksandr Byelkin
2016-05-14 14:13:33 +02:00
parent ab42f5809f
commit 3823a0f7a9

View File

@@ -151,8 +151,8 @@ static int com_multi_ps1(MYSQL *mysql)
rc= mysql_stmt_execute(stmt);
check_stmt_rc(rc, stmt);
diag("affected_rows: %d", mysql_stmt_affected_rows(stmt));
diag("stmt_id: %d", stmt->stmt_id);
diag("affected_rows: %llu", mysql_stmt_affected_rows(stmt));
diag("stmt_id: %lu", stmt->stmt_id);
mysql_stmt_close(stmt);
stmt= mysql_stmt_init(mysql);