- Fixed param type (%l -> %ld)

This commit is contained in:
Felipe Pena 2009-05-26 12:35:38 +00:00
parent b1cc4234ab
commit ddff1c485d

View File

@ -1827,7 +1827,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;
}