summaryrefslogtreecommitdiff
path: root/ext/sybase_ct/php_sybase_ct.c
diff options
context:
space:
mode:
authorkrakjoe <joe.watkins@live.co.uk>2014-08-11 06:09:46 +0100
committerkrakjoe <joe.watkins@live.co.uk>2014-08-11 06:09:46 +0100
commitdc70139d85cc5476523bfcfbefa44f3ec35e8db5 (patch)
tree7c8fba7f50438bd4a92f8aa8bf85f2c9c8ea9173 /ext/sybase_ct/php_sybase_ct.c
parent4513475a413efe61160dfc8fbb803049a13a9720 (diff)
downloadphp-git-dc70139d85cc5476523bfcfbefa44f3ec35e8db5.tar.gz
update zend_make_printable_zval to take TSRM context
Diffstat (limited to 'ext/sybase_ct/php_sybase_ct.c')
-rw-r--r--ext/sybase_ct/php_sybase_ct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sybase_ct/php_sybase_ct.c b/ext/sybase_ct/php_sybase_ct.c
index aaa0c79fae..97aa204892 100644
--- a/ext/sybase_ct/php_sybase_ct.c
+++ b/ext/sybase_ct/php_sybase_ct.c
@@ -442,7 +442,7 @@ static int _call_message_handler(zval *callback_name, CS_SERVERMSG *srvmsg TSRML
zval expr_copy;
int use_copy;
- use_copy = zend_make_printable_zval(callback_name, &expr_copy);
+ use_copy = zend_make_printable_zval(callback_name, &expr_copy TSRMLS_CC);
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Sybase: Cannot call the messagehandler %s", Z_STRVAL(expr_copy));
zval_dtor(&expr_copy);
}