summaryrefslogtreecommitdiff
path: root/inflate.c
diff options
context:
space:
mode:
authorNathan Moinvaziri <nathan@nathanm.com>2020-08-15 20:45:41 -0700
committerHans Kristian Rosbach <hk-github@circlestorm.org>2020-08-20 12:05:11 +0200
commitd8aeacbfa285556fccef8f01af68bf02f1e671b0 (patch)
tree4de4362915bb799f88d4da1e2c17cb88fbd05eb9 /inflate.c
parent9fccbde10c91295a74df6363b4e08259b0d855f0 (diff)
Harmonize the CPU architecture preprocessor definitions.
Diffstat (limited to 'inflate.c')
-rw-r--r--inflate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/inflate.c b/inflate.c
index 340f854..4f99c0e 100644
--- a/inflate.c
+++ b/inflate.c
@@ -130,9 +130,9 @@ int32_t ZEXPORT PREFIX(inflateInit2_)(PREFIX3(stream) *strm, int32_t windowBits,
int32_t ret;
struct inflate_state *state;
-#if defined(X86_CPUID)
+#if defined(X86_FEATURES)
x86_check_features();
-#elif defined(ARM_CPUID)
+#elif defined(ARM_FEATURES)
arm_check_features();
#endif