Skip to content

Commit a6b5439

Browse files
authored
Fix warnings function declaration isn't a prototype (#14577)
This fixes the -Wstrict-prototypes warnings that might pop up in certain builds.
1 parent 564914a commit a6b5439

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_portability.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ typedef union {
807807
double d;
808808
long double ld;
809809
void *p;
810-
void (*fun)();
810+
void (*fun)(void);
811811
} zend_max_align_t;
812812
#endif
813813

0 commit comments

Comments
 (0)