git: 2cb81011e734 - stable/13 - sys/cpuset.h: fix macro definition

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Fri, 14 Jan 2022 18:10:33 UTC
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=2cb81011e734d7896a3caf9bd08f3e4abaa07436

commit 2cb81011e734d7896a3caf9bd08f3e4abaa07436
Author:     Stefan Eßer <se@FreeBSD.org>
AuthorDate: 2021-12-31 13:09:44 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2022-01-14 16:17:30 +0000

    sys/cpuset.h: fix macro definition
    
    (cherry picked from commit 5650d340ad66a47fb8ea182c7057a2d07806ca7e)
---
 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
 
 /*