From dff81c4c8cd283a468333b35a59f90dc717180da Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sat, 15 Jun 2024 19:44:06 +0200 Subject: [PATCH] Fix warnings function declaration isn't a prototype This fixes the -Wstrict-prototypes warnings that might pop up in certain builds. --- Zend/zend_portability.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_portability.h b/Zend/zend_portability.h index c766491ba3b9..4f785d139631 100644 --- a/Zend/zend_portability.h +++ b/Zend/zend_portability.h @@ -807,7 +807,7 @@ typedef union { double d; long double ld; void *p; - void (*fun)(); + void (*fun)(void); } zend_max_align_t; #endif