diff options
author | Uwe Schindler <thetaphi@php.net> | 2006-07-25 09:12:07 +0000 |
---|---|---|
committer | Uwe Schindler <thetaphi@php.net> | 2006-07-25 09:12:07 +0000 |
commit | d02b3bb7f3ae2fd4402a4c21cdd3f13b76f6a9f4 (patch) | |
tree | 216a32764e6d86acd58d4eb9c0d72dbd1fec1d51 | |
parent | 7d3057410c18b68aff2e275c5ef4c1bba07363d6 (diff) | |
download | php-git-d02b3bb7f3ae2fd4402a4c21cdd3f13b76f6a9f4.tar.gz |
Fix compilation with TSRM
-rw-r--r-- | ext/sybase_ct/php_sybase_ct.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sybase_ct/php_sybase_ct.c b/ext/sybase_ct/php_sybase_ct.c index e2ed744236..a476f78999 100644 --- a/ext/sybase_ct/php_sybase_ct.c +++ b/ext/sybase_ct/php_sybase_ct.c @@ -161,7 +161,7 @@ static void _free_sybase_result(sybase_result *result) } /* Forward declaration */ -static int php_sybase_finish_results (sybase_result *result); +static int php_sybase_finish_results (sybase_result *result TSRMLS_DC); static void php_free_sybase_result(zend_rsrc_list_entry *rsrc TSRMLS_DC) { @@ -172,7 +172,7 @@ static void php_free_sybase_result(zend_rsrc_list_entry *rsrc TSRMLS_DC) if (result->sybase_ptr->cmd) { ct_cancel(NULL, result->sybase_ptr->cmd, CS_CANCEL_ALL); } - php_sybase_finish_results(result); + php_sybase_finish_results(result TSRMLS_CC); } _free_sybase_result(result); |