From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: To: From: Benjamin Herrenschmidt Date: Fri, 20 Mar 2009 16:34:13 +1100 Subject: [PATCH 4/6] powerpc/mm: Fix printk type warning in mmu_context_nohash In-Reply-To: <1237527248.890279.946079812092.qpush@grosgo> Message-Id: <20090320053432.71A53DDEEC@ozlabs.org> List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , We need to use %zu instead of %d when printing a sizeof() Signed-off-by: Benjamin Herrenschmidt --- arch/powerpc/mm/mmu_context_nohash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-work.orig/arch/powerpc/mm/mmu_context_nohash.c 2009-03-11 11:51:05.000000000 +1100 +++ linux-work/arch/powerpc/mm/mmu_context_nohash.c 2009-03-11 11:52:55.000000000 +1100 @@ -380,7 +380,7 @@ void __init mmu_context_init(void) #endif printk(KERN_INFO - "MMU: Allocated %d bytes of context maps for %d contexts\n", + "MMU: Allocated %zu bytes of context maps for %d contexts\n", 2 * CTX_MAP_SIZE + (sizeof(void *) * (last_context + 1)), last_context - first_context + 1);