Skip to content

Commit 67dd48f

Browse files
fix [-Wstrict-prototypes] buid warnings
1 parent bf32299 commit 67dd48f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_cpuinfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ static inline int zend_cpu_supports_avx2(void) {
208208
/* __builtin_cpu_supports has pclmul from gcc9 */
209209
#if PHP_HAVE_BUILTIN_CPU_SUPPORTS && (!defined(__GNUC__) || (ZEND_GCC_VERSION >= 9000))
210210
ZEND_NO_SANITIZE_ADDRESS
211-
static inline int zend_cpu_supports_pclmul() {
211+
static inline int zend_cpu_supports_pclmul(void) {
212212
#if PHP_HAVE_BUILTIN_CPU_INIT
213213
__builtin_cpu_init();
214214
#endif

0 commit comments

Comments
 (0)