2.4.36-stable kernel tree
リビジョン | df51c6d02a2b8a5b62be8268b7de3e748c0de6d9 (tree) |
---|---|
日時 | 2007-02-25 16:41:32 |
作者 | Mariusz Kozlowski <m.kozlowski@tuxl...> |
コミッター | Willy Tarreau |
[PATCH] byteorder swab parenthesis fix
Hello,
This patch fixes byteorder swab 24 macro parenthesis.
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
@@ -68,7 +68,7 @@ | ||
68 | 68 | #define ___constant_swab24(x) \ |
69 | 69 | ((__u32)( \ |
70 | 70 | (((__u32)(x) & (__u32)0x000000ffU) << 16) | \ |
71 | - (((__u32)(x) & (__u32)0x0000ff00U) | \ | |
71 | + (((__u32)(x) & (__u32)0x0000ff00U)) | \ | |
72 | 72 | (((__u32)(x) & (__u32)0x00ff0000U) >> 16) )) |
73 | 73 | #define ___constant_swab32(x) \ |
74 | 74 | ((__u32)( \ |