Browse Source

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

experimental/first_unicode_implementation
Felipe Pena 17 years ago
parent
commit
ddff1c485d
  1. 2
      ext/mssql/php_mssql.c

2
ext/mssql/php_mssql.c

@ -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;
}

Loading…
Cancel
Save