From 4a4999cfd425e47e71b06d991e2649479fdb6011 Mon Sep 17 00:00:00 2001 From: x Date: Tue, 3 Jan 2017 00:02:11 +0100 Subject: [PATCH] Config/Platform --- conf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.h b/conf.h index d48f8db..235139f 100644 --- a/conf.h +++ b/conf.h @@ -65,7 +65,7 @@ static inline unsigned ror32(unsigned x, int s) { return x >> s | x << (32 - s); #if __GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__ >= 8 #define bswap16(x) __builtin_bswap16(x) #else -static inline unsigned short bswap16(unsigned short) { return __builtin_bswap32(x << 16); } +static inline unsigned short bswap16(unsigned short x) { return __builtin_bswap32(x << 16); } #endif #define bswap32(x) __builtin_bswap32(x) #define bswap64(x) __builtin_bswap64(x)