diff options
author | Felipe Pena <felipe@php.net> | 2009-05-26 12:35:46 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2009-05-26 12:35:46 +0000 |
commit | 8b63e5b0928f3565104dbd6bc03e4c2438c97bcc (patch) | |
tree | 7b738feed36b3cdb3e45c8a031dbd724108a8746 /ext/mssql | |
parent | d91344722d0778040ce7d6f2d413c4aca41d1aeb (diff) | |
download | php-git-8b63e5b0928f3565104dbd6bc03e4c2438c97bcc.tar.gz |
- Fixed param type (%l -> %ld)
Diffstat (limited to 'ext/mssql')
-rw-r--r-- | ext/mssql/php_mssql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c index 400de7376f..dedf6dd173 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -1834,7 +1834,7 @@ PHP_FUNCTION(mssql_result) ZEND_FETCH_RESOURCE(result, mssql_result *, &mssql_result_index, -1, "MS SQL-result", le_result); 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; } |