diff options
author | Uwe Schindler <thetaphi@php.net> | 2006-07-25 09:20:32 +0000 |
---|---|---|
committer | Uwe Schindler <thetaphi@php.net> | 2006-07-25 09:20:32 +0000 |
commit | d6337819ba32fcdd7d22f3c20136fd3d3be9dc06 (patch) | |
tree | 7ec0137b3b32d6556340fc58f48d150756212576 /ext/sybase_ct/php_sybase_ct.c | |
parent | c1da9dbc8ba89e3a6460831e9773f932fde8f44a (diff) | |
download | php-git-d6337819ba32fcdd7d22f3c20136fd3d3be9dc06.tar.gz |
MFH: Fix compilation with TSRM (now correct)
Diffstat (limited to 'ext/sybase_ct/php_sybase_ct.c')
-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 413f1d8542..44efa7b4d0 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); |