diff options
author | Frank M. Kromann <fmk@php.net> | 2004-09-28 18:38:29 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2004-09-28 18:38:29 +0000 |
commit | 81c8d3132b2d8d7ff2da85ace03ace61da0372d5 (patch) | |
tree | 4a4362f57f4e0c4a9df1683291333bbdea870ae4 /ext/mssql/php_mssql.c | |
parent | 454b9659c5ace76b5cec6be34cb6a71747b13535 (diff) | |
download | php-git-81c8d3132b2d8d7ff2da85ace03ace61da0372d5.tar.gz |
Fix compilation
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 c0d20b3845..c836653978 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -1795,7 +1795,7 @@ PHP_FUNCTION(mssql_result) } *return_value = result->data[Z_LVAL_PP(row)][field_offset]; - ZVAL_COPY_CTOR(return_value); + zval_copy_ctor(return_value); } /* }}} */ |