mirror of
https://github.com/php/php-src.git
synced 2025-08-16 22:18:50 +02:00
- Fixed param type (%l -> %ld)
This commit is contained in:
parent
d91344722d
commit
8b63e5b092
1 changed files with 1 additions and 1 deletions
|
@ -1834,7 +1834,7 @@ PHP_FUNCTION(mssql_result)
|
||||||
ZEND_FETCH_RESOURCE(result, mssql_result *, &mssql_result_index, -1, "MS SQL-result", le_result);
|
ZEND_FETCH_RESOURCE(result, mssql_result *, &mssql_result_index, -1, "MS SQL-result", le_result);
|
||||||
|
|
||||||
if (row < 0 || row >= result->num_rows) {
|
if (row < 0 || row >= result->num_rows) {
|
||||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Bad row offset (%l)", row);
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Bad row offset (%ld)", row);
|
||||||
RETURN_FALSE;
|
RETURN_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue