From f28e0b0db7f4804e432fbcd79f0ccbe27983e6e4 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Fri, 16 May 2014 07:34:47 +0200 Subject: [PATCH] fix TS build --- ext/soap/soap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } -- 2.50.1