From: Pierre Joye Date: Fri, 16 May 2014 05:34:47 +0000 (+0200) Subject: fix TS build X-Git-Tag: POST_PHPNG_MERGE~341^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f28e0b0db7f4804e432fbcd79f0ccbe27983e6e4;p=php fix TS build --- diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 1f7dbdeeac..d069d58bab 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -609,17 +609,17 @@ PHP_RINIT_FUNCTION(soap) return SUCCESS; } -static void delete_sdl_res(zend_resource *res TSRMLS_CC) +static void delete_sdl_res(zend_resource *res TSRMLS_DC) { delete_sdl(res->ptr); } -static void delete_url_res(zend_resource *res TSRMLS_CC) +static void delete_url_res(zend_resource *res TSRMLS_DC) { delete_url(res->ptr); } -static void delete_service_res(zend_resource *res TSRMLS_CC) +static void delete_service_res(zend_resource *res TSRMLS_DC) { delete_service(res->ptr); }