diff options
author | Pierre Joye <pajoye@php.net> | 2008-12-14 16:25:15 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2008-12-14 16:25:15 +0000 |
commit | ea7c47c97d17cae5492e7fb81161e590ed3d7311 (patch) | |
tree | d50f9c1ca3db0acbf9c5c8b665adf32c82d57036 /ext/mssql/php_mssql.c | |
parent | 830be669ccdd2949f06e5da7b10c5f4e22af9b89 (diff) | |
download | php-git-ea7c47c97d17cae5492e7fb81161e590ed3d7311.tar.gz |
- fix build
Diffstat (limited to 'ext/mssql/php_mssql.c')
-rw-r--r-- | ext/mssql/php_mssql.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |