1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

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

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