From 0673aa7f6182dae11798c7a9055dbfd672d87c01 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Mon, 11 Dec 2017 12:26:47 +0100 Subject: [PATCH] Apply calling convention explicitly to the function, not to the decl. --- Zend/zend_compile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.40.0