summaryrefslogtreecommitdiff
path: root/ext/mssql/php_mssql.c
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2009-05-26 12:35:46 +0000
committerFelipe Pena <felipe@php.net>2009-05-26 12:35:46 +0000
commit8b63e5b0928f3565104dbd6bc03e4c2438c97bcc (patch)
tree7b738feed36b3cdb3e45c8a031dbd724108a8746 /ext/mssql/php_mssql.c
parentd91344722d0778040ce7d6f2d413c4aca41d1aeb (diff)
downloadphp-git-8b63e5b0928f3565104dbd6bc03e4c2438c97bcc.tar.gz
- Fixed param type (%l -> %ld)
Diffstat (limited to 'ext/mssql/php_mssql.c')
-rw-r--r--ext/mssql/php_mssql.c2
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;
}