Skip to content

Commit dd97cb1

Browse files
committed
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix format specifier
2 parents 78b44dd + ee3227a commit dd97cb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/odbc/php_odbc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2373,7 +2373,7 @@ PHP_FUNCTION(odbc_result_all)
23732373
PHPWRITE(buf, result->longreadlen);
23742374
} else if (rc != SQL_SUCCESS) {
23752375
php_printf("</td></tr></table>");
2376-
php_error_docref(NULL, E_WARNING, "Cannot get data of column #%d (retcode %u)", i + 1, rc);
2376+
php_error_docref(NULL, E_WARNING, "Cannot get data of column #%zu (retcode %u)", i + 1, rc);
23772377
efree(buf);
23782378
RETURN_FALSE;
23792379
} else if (result->values[i].vallen == SQL_NULL_DATA) {

0 commit comments

Comments
 (0)