From 56dac369ab930f9f0c42d6cad085868a1ea1a559 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Sat, 24 Mar 2012 14:22:04 +0800 Subject: [PATCH] Fix ZTS build --- ext/dom/php_dom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dom/php_dom.c b/ext/dom/php_dom.c index e65f58c925..df413e9b61 100644 --- a/ext/dom/php_dom.c +++ b/ext/dom/php_dom.c @@ -543,7 +543,7 @@ static HashTable* dom_get_debug_info_helper(zval *object, int *is_temp TSRMLS_DC static HashTable* dom_get_debug_info(zval *object, int *is_temp TSRMLS_DC) /* {{{ */ { - return dom_get_debug_info_helper(object, is_temp); + return dom_get_debug_info_helper(object, is_temp TSRMLS_CC); } /* }}} */ -- 2.40.0