Fix warnings function declaration isn't a prototype (#14577)

This fixes the -Wstrict-prototypes warnings that might pop up in certain
builds.
This commit is contained in:
Peter Kokot 2024-06-15 21:27:56 +02:00 committed by GitHub
parent 564914ac1a
commit a6b5439e2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -807,7 +807,7 @@ typedef union {
double d;
long double ld;
void *p;
void (*fun)();
void (*fun)(void);
} zend_max_align_t;
#endif