From: Nathan Moinvaziri Date: Tue, 3 May 2022 18:12:46 +0000 (-0700) Subject: Fixed warning about strict prototypes for cpu_check_features. X-Git-Tag: 2.1.0-beta1~253 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8a7f264cfa2b2bd7e9486ba107e861504d9c170;p=thirdparty%2Fzlib-ng.git Fixed warning about strict prototypes for cpu_check_features. --- diff --git a/cpu_features.h b/cpu_features.h index 81e13a3c..4dcf8e59 100644 --- a/cpu_features.h +++ b/cpu_features.h @@ -19,7 +19,7 @@ # include "arch/s390/s390_features.h" #endif -extern void cpu_check_features(); +extern void cpu_check_features(void); /* adler32 */ typedef uint32_t (*adler32_func)(uint32_t adler, const unsigned char *buf, size_t len);