powerpc/ftrace: Fix printf format warning
authorMichael Ellerman <[email protected]>
Mon, 6 Apr 2009 04:40:46 +0000 (04:40 +0000)
committerPaul Mackerras <[email protected]>
Tue, 7 Apr 2009 05:19:00 +0000 (15:19 +1000)
'tramp' is an unsigned long, so print it with %lx.

Fixes the following build warning:
arch/powerpc/kernel/ftrace.c:291: error: format ‘%x’ expects type ‘unsigned int’, but argument 2 has type ‘long unsigned int’

Signed-off-by: Michael Ellerman <[email protected]>
Acked-by: Steven Rostedt <[email protected]>
Signed-off-by: Paul Mackerras <[email protected]>
arch/powerpc/kernel/ftrace.c

index c2b90a941f77f0cb4ef7b31394b7251e1f69b005..70e2a736be1f5d5bf26b8211535dfdc9b8578b74 100644 (file)
@@ -293,7 +293,7 @@ __ftrace_make_nop(struct module *mod,
        if (tramp & 0x8000)
                tramp -= 0x10000;
 
-       pr_debug(" %x ", tramp);
+       pr_debug(" %lx ", tramp);
 
        if (tramp != addr) {
                printk(KERN_ERR