[PATCH v3 1/9] rbtree test: fix sparse warning about 64-bit constant

From: Michel Lespinasse
Date: Mon Aug 20 2012 - 18:07:49 EST


Just a small fix to make sparse happy.

Signed-off-by: Michel Lespinasse <walken@xxxxxxxxxx>
Reported-by: Fengguang Wu <wfg@xxxxxxxxxxxxxxx>
Acked-by: Rik van Riel <riel@xxxxxxxxxx>

---
lib/rbtree_test.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c
index 19dfca9ff7d7..fd09465d82ca 100644
--- a/lib/rbtree_test.c
+++ b/lib/rbtree_test.c
@@ -88,7 +88,7 @@ static int rbtree_test_init(void)

printk(KERN_ALERT "rbtree testing");

- prandom32_seed(&rnd, 3141592653589793238);
+ prandom32_seed(&rnd, 3141592653589793238ULL);
init();

time1 = get_cycles();
--
1.7.7.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/