Commit b766b305d3f2d8be173e5d9853534ea1afdbabba
Committed by
David S. Miller
1 parent
0a242efc4f
Exists in
master
and in
7 other branches
[NETFILTER]: Fix gcc-3.4.x warning about iplicit operator precedence
Fix gcc-3.4.x warning about iplicit operator precedence in NF_QUEUE_NR() Signed-off-by: Harald Welte <laforge@netfilter.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
include/linux/netfilter.h
... | ... | @@ -29,7 +29,7 @@ |
29 | 29 | #define NF_VERDICT_QMASK 0xffff0000 |
30 | 30 | #define NF_VERDICT_QBITS 16 |
31 | 31 | |
32 | -#define NF_QUEUE_NR(x) ((x << NF_VERDICT_QBITS) & NF_VERDICT_QMASK | NF_QUEUE) | |
32 | +#define NF_QUEUE_NR(x) (((x << NF_VERDICT_QBITS) & NF_VERDICT_QMASK) | NF_QUEUE) | |
33 | 33 | |
34 | 34 | /* only for userspace compatibility */ |
35 | 35 | #ifndef __KERNEL__ |