diff options
author | Szabolcs Nagy <nsz@port70.net> | 2014-08-13 16:55:56 +0200 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2014-08-13 16:55:56 +0200 |
commit | d146d4dc1104aa3472daf81d2581aca65df54d13 (patch) | |
tree | dbf8efa46cf268e7ce00eda03fcc483a201b58f8 | |
parent | b04971d91a46d34b5e643ee2e8164171b6247216 (diff) | |
download | musl-d146d4dc1104aa3472daf81d2581aca65df54d13.zip musl-d146d4dc1104aa3472daf81d2581aca65df54d13.tar.gz musl-d146d4dc1104aa3472daf81d2581aca65df54d13.tar.bz2 |
fix CPU_EQUAL macro in sched.h
-rw-r--r-- | include/sched.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sched.h b/include/sched.h index 4394b64..3e34a72 100644 --- a/include/sched.h +++ b/include/sched.h @@ -123,7 +123,7 @@ __CPU_op_func_S(XOR, ^) #define CPU_XOR(d,s1,s2) CPU_XOR_S(sizeof(cpu_set_t),d,s1,s2) #define CPU_COUNT(set) CPU_COUNT_S(sizeof(cpu_set_t),set) #define CPU_ZERO(set) CPU_ZERO_S(sizeof(cpu_set_t),set) -#define CPU_EQUAL(set) CPU_EQUAL_S(sizeof(cpu_set_t),set) +#define CPU_EQUAL(s1,s2) CPU_EQUAL_S(sizeof(cpu_set_t),s1,s2) #endif |