You've already forked mariadb-connector-c
mirror of
https://github.com/mariadb-corporation/mariadb-connector-c.git
synced 2025-08-07 02:42:49 +03:00
Fix Windows size_t warnings.
This commit is contained in:
@@ -39,7 +39,7 @@ static int perf1(MYSQL *mysql)
|
||||
stmt= mysql_stmt_init(mysql);
|
||||
|
||||
diag("prepare");
|
||||
rc= mysql_stmt_prepare(stmt, stmtstr, strlen(stmtstr));
|
||||
rc= mysql_stmt_prepare(stmt, stmtstr, (unsigned long)strlen(stmtstr));
|
||||
check_stmt_rc(rc, stmt);
|
||||
|
||||
diag("execute");
|
||||
|
Reference in New Issue
Block a user