mirror of
https://github.com/php/php-src.git
synced 2026-04-29 03:03:26 +02:00
Fix format specifier
In this function, `i` is of type `size_t`.
This commit is contained in:
+1
-1
@@ -2374,7 +2374,7 @@ PHP_FUNCTION(odbc_result_all)
|
||||
PHPWRITE(buf, result->longreadlen);
|
||||
} else if (rc != SQL_SUCCESS) {
|
||||
php_printf("</td></tr></table>");
|
||||
php_error_docref(NULL, E_WARNING, "Cannot get data of column #%d (retcode %u)", i + 1, rc);
|
||||
php_error_docref(NULL, E_WARNING, "Cannot get data of column #%zu (retcode %u)", i + 1, rc);
|
||||
efree(buf);
|
||||
RETURN_FALSE;
|
||||
} else if (result->values[i].vallen == SQL_NULL_DATA) {
|
||||
|
||||
Reference in New Issue
Block a user