From: Michel Lespinasse Date: Fri, 21 Sep 2012 00:57:37 +0000 (+1000) Subject: rbtree test: fix sparse warning about 64-bit constant X-Git-Tag: next-20120925~1^2~261 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9f90039bf38c5eafd6e8f5b42fa6d935f423e6b1;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();