From ea7c47c97d17cae5492e7fb81161e590ed3d7311 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Sun, 14 Dec 2008 16:25:15 +0000 Subject: - fix build --- 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 34a7f4635a..4af5c3f46d 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -978,7 +978,7 @@ static void php_mssql_get_column_content_with_type(mssql_link *mssql_ptr,int off if (!res_length) { ZVAL_NULL(result); } else { - ZVAL_STRINGL(result, (char *)dbdata(mssql_ptr->link, offset)), res_length, 1); + ZVAL_STRINGL(result, (char *)dbdata(mssql_ptr->link, offset), res_length, 1); } } break; -- cgit v1.2.1