Skip to content

Commit a345908

Browse files
committed
Try to fix windows build
noreturn attribute has to be on the declaration as well.
1 parent 3c23084 commit a345908

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/soap/soap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ static void type_to_string(sdlTypePtr type, smart_str *buf, int level);
5151
static void clear_soap_fault(zval *obj);
5252
static void set_soap_fault(zval *obj, char *fault_code_ns, char *fault_code, char *fault_string, char *fault_actor, zval *fault_detail, char *name);
5353
static void add_soap_fault_ex(zval *fault, zval *obj, char *fault_code, char *fault_string, char *fault_actor, zval *fault_detail);
54-
static void soap_server_fault(char* code, char* string, char *actor, zval* details, char *name);
54+
static ZEND_NORETURN void soap_server_fault(char* code, char* string, char *actor, zval* details, char *name);
5555
static void soap_server_fault_ex(sdlFunctionPtr function, zval* fault, soapHeader* hdr);
5656

5757
static sdlParamPtr get_param(sdlFunctionPtr function, char *param_name, int index, int);

0 commit comments

Comments
 (0)