From 3096c715947487249e4475730c05243df0308c29 Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Fri, 31 May 2024 19:56:27 +0200 Subject: [PATCH] Fix build warning in release mode This isn't warned on by default, and can break the build if werror is used. --- ext/soap/soap.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 6a3db2f1452..c88c1b854fe 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -65,7 +65,6 @@ static xmlNodePtr serialize_parameter(sdlParamPtr param,zval *param_val,int inde static xmlNodePtr serialize_zval(zval *val, sdlParamPtr param, char *paramName, int style, xmlNodePtr parent); static void delete_service(void *service); -static void delete_hashtable(void *hashtable); static void delete_argv(struct _soap_class *class); static void soap_error_handler(int error_num, zend_string *error_filename, const uint32_t error_lineno, zend_string *message);