From: Michel Lespinasse Date: Fri, 7 Sep 2012 00:23:50 +0000 (+1000) Subject: rbtree test: fix sparse warning about 64-bit constant X-Git-Tag: next-20120907~1^2~117 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1b65e8c10269fcec7bca17eb077336cf801d505c;p=karo-tx-linux.git rbtree test: fix sparse warning about 64-bit constant Just a small fix to make sparse happy. Signed-off-by: Michel Lespinasse Reported-by: Fengguang Wu Acked-by: Rik van Riel Cc: Peter Zijlstra Cc: Andrea Arcangeli Cc: David Woodhouse Signed-off-by: Andrew Morton --- 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();