From: Michel Lespinasse Date: Mon, 8 Oct 2012 23:31:04 +0000 (-0700) Subject: rbtree test: fix sparse warning about 64-bit constant X-Git-Tag: v3.12-rc1~2183^2~101 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28d7530928d01638678f63c3c70113540b0e6abe;p=kernel%2Fkernel-generic.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 Signed-off-by: Linus Torvalds --- diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c index 19dfca9..fd09465 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();