From 5650d340ad66a47fb8ea182c7057a2d07806ca7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20E=C3=9Fer?= Date: Fri, 31 Dec 2021 14:09:44 +0100 Subject: [PATCH] sys/cpuset.h: fix macro definition The _s parameter was missing in the paramater list. Reported by: gljennjohn at gmail.com (Gary Jennejohn) --- sys/sys/cpuset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/cpuset.h b/sys/sys/cpuset.h index 5841fa37f28a..0ce470d5f569 100644 --- a/sys/sys/cpuset.h +++ b/sys/sys/cpuset.h @@ -90,7 +90,7 @@ #define CPU_XOR_S(_s, d, s1, s2) __BIT_XOR2(_s, d, s1, s2) #define CPU_COUNT_S(_s, p) ((int)__BIT_COUNT(_s, p)) -#define CPU_EQUAL_S(p, c) (__BIT_CMP(_s, p, c) == 0) +#define CPU_EQUAL_S(_s, p, c) (__BIT_CMP(_s, p, c) == 0) #endif /*