From: Andrew Morton Date: Fri, 28 Sep 2012 00:19:25 +0000 (+1000) Subject: rbtree-performance-and-correctness-test-fix X-Git-Tag: next-20121005~1^2~304 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=561d73ee373cb74cc67c18eaed692466ca40b736;p=karo-tx-linux.git rbtree-performance-and-correctness-test-fix fix printk warning: sparc64 cycles_t is unsigned long Cc: Michel Lespinasse Cc: Fengguang Wu Signed-off-by: Andrew Morton --- diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c index 4c6d2501389f..19dfca9ff7d7 100644 --- a/lib/rbtree_test.c +++ b/lib/rbtree_test.c @@ -104,7 +104,7 @@ static int rbtree_test_init(void) time = time2 - time1; time = div_u64(time, PERF_LOOPS); - printk(" -> %llu cycles\n", time); + printk(" -> %llu cycles\n", (unsigned long long)time); for (i = 0; i < CHECK_LOOPS; i++) { init();