• R/O
  • HTTP
  • SSH
  • HTTPS

linux-2.4.36: コミット

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>

include/linux/byteorder/swab.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

変更サマリ

差分

--- a/include/linux/byteorder/swab.h
+++ b/include/linux/byteorder/swab.h
@@ -68,7 +68,7 @@
6868 #define ___constant_swab24(x) \
6969 ((__u32)( \
7070 (((__u32)(x) & (__u32)0x000000ffU) << 16) | \
71- (((__u32)(x) & (__u32)0x0000ff00U) | \
71+ (((__u32)(x) & (__u32)0x0000ff00U)) | \
7272 (((__u32)(x) & (__u32)0x00ff0000U) >> 16) ))
7373 #define ___constant_swab32(x) \
7474 ((__u32)( \
旧リポジトリブラウザで表示