From: Anatol Belski Date: Mon, 11 Dec 2017 11:26:47 +0000 (+0100) Subject: Apply calling convention explicitly to the function, not to the decl. X-Git-Tag: php-7.3.0alpha1~830 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0673aa7f6182dae11798c7a9055dbfd672d87c01;p=php Apply calling convention explicitly to the function, not to the decl. --- diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index a615cf620e..868f3ab986 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -408,7 +408,7 @@ struct _zend_op_array { #define ZEND_RETURN_REFERENCE 1 /* zend_internal_function_handler */ -typedef void ZEND_FASTCALL (*zif_handler)(INTERNAL_FUNCTION_PARAMETERS); +typedef void (ZEND_FASTCALL *zif_handler)(INTERNAL_FUNCTION_PARAMETERS); typedef struct _zend_internal_function { /* Common elements */