From b2eb454171b8d8050f7e68c6fb342ae29cf29819 Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Thu, 28 Aug 2003 21:00:24 +0000 Subject: format string fixes --- ext/mssql/php_mssql.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/mssql/php_mssql.c') diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c index 65b0a86ca2..64c562d8b4 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -1726,7 +1726,7 @@ PHP_FUNCTION(mssql_result) convert_to_long_ex(row); if (Z_LVAL_PP(row) < 0 || Z_LVAL_PP(row) >= result->num_rows) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Bad row offset (%d)", Z_LVAL_PP(row)); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Bad row offset (%ld)", Z_LVAL_PP(row)); RETURN_FALSE; } -- cgit v1.2.1