Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=504945c9c6954b83758272d04797f31437dfce9e
Commit:     504945c9c6954b83758272d04797f31437dfce9e
Parent:     7542e0e696d1b6e71e6eb3183cbf2c63ec6b5acb
Author:     Randy Dunlap <[EMAIL PROTECTED]>
AuthorDate: Tue Apr 3 13:00:47 2007 -0700
Committer:  Stefan Richter <[EMAIL PROTECTED]>
CommitDate: Mon Apr 30 00:00:29 2007 +0200

    ieee1394: ieee1394_core printk format
    
    Fix printk format string:
    drivers/ieee1394/ieee1394_core.c:702: warning: format '%d' expects type 
'int', but argument 2 has type 'size_t'
    
    Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>
    Signed-off-by: Stefan Richter <[EMAIL PROTECTED]>
---
 drivers/ieee1394/ieee1394_core.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/ieee1394/ieee1394_core.c b/drivers/ieee1394/ieee1394_core.c
index d6e3d44..d2240a4 100644
--- a/drivers/ieee1394/ieee1394_core.c
+++ b/drivers/ieee1394/ieee1394_core.c
@@ -698,7 +698,7 @@ static size_t packet_size_to_data_size(size_t packet_size, 
size_t header_size,
                ret = buffer_size;
 
        if (unlikely(ret + header_size != packet_size))
-               HPSB_ERR("unexpected packet size %d (tcode %d), bug?",
+               HPSB_ERR("unexpected packet size %zd (tcode %d), bug?",
                         packet_size, tcode);
        return ret;
 }
-
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