Browse Source

fix missing parens in bit op macros (param.h)

Rich Felker 13 years ago
parent
commit
bfb29b666e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/sys/param.h

+ 1 - 1
include/sys/param.h

@@ -18,7 +18,7 @@
 #define MIN(a,b) (((a)<(b))?(a):(b))
 #define MAX(a,b) (((a)>(b))?(a):(b))
 
-#define __bitop(x,i,o) ((x)[(i)/8] o 1<<(i)%8)
+#define __bitop(x,i,o) ((x)[(i)/8] o (1<<(i)%8))
 #define setbit(x,i) __bitop(x,i,|=)
 #define clrbit(x,i) __bitop(x,i,&=~)
 #define isset(x,i) __bitop(x,i,&)