Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e606c109c485c6f8e27dd6ddcd2c0b58c96fc5c9
Commit:     e606c109c485c6f8e27dd6ddcd2c0b58c96fc5c9
Parent:     19299b1a722198830e39264a0f2edadd3fde74c2
Author:     Ralf Baechle <[EMAIL PROTECTED]>
AuthorDate: Wed Sep 12 16:31:12 2007 +0100
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Fri Sep 14 19:08:42 2007 +0100

    [MIPS] rtlx: fix int vs. long bug.
    
      CC      arch/mips/kernel/rtlx.o
    arch/mips/kernel/rtlx.c: In function 'rtlx_init':
    arch/mips/kernel/rtlx.c:114: warning: format '%x' expects type 'unsigned 
int', but argument 3 has type 'long unsigned int'
    
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/kernel/rtlx.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/kernel/rtlx.c b/arch/mips/kernel/rtlx.c
index aab89e9..04d8ee7 100644
--- a/arch/mips/kernel/rtlx.c
+++ b/arch/mips/kernel/rtlx.c
@@ -111,7 +111,7 @@ static void __used dump_rtlx(void)
 static int rtlx_init(struct rtlx_info *rtlxi)
 {
        if (rtlxi->id != RTLX_ID) {
-               printk(KERN_ERR "no valid RTLX id at 0x%p 0x%x\n", rtlxi, 
rtlxi->id);
+               printk(KERN_ERR "no valid RTLX id at 0x%p 0x%lx\n", rtlxi, 
rtlxi->id);
                return -ENOEXEC;
        }
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to