[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <3908561D78D1C84285E8C5FCA982C28F1E093C98@ORSMSX108.amr.corp.intel.com>
Date: Thu, 28 Mar 2013 16:47:13 +0000
From: "Luck, Tony" <tony.luck@...el.com>
To: Xie XiuQi <xiexiuqi@...wei.com>,
"Yu, Fenghua" <fenghua.yu@...el.com>
CC: "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
Jiang Liu <jiang.liu@...wei.com>,
Yijing Wang <wangyijing@...wei.com>
Subject: RE: [PATCH] ia64: Fix example error_injection_tool
Nice catch.
- mask[j]=1<<k;
+ mask[j] = (unsigned long)1<<k;
Could use
mask[j] = 1ul << k;
to avoid the verbose cast.
-Tony
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists