Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=38d15b656258b52a659fcf3e181f85b51bd1851f
Commit:     38d15b656258b52a659fcf3e181f85b51bd1851f
Parent:     3557baabf28088f49bdf72a048fd33ab62e205b1
Author:     David S. Miller <[EMAIL PROTECTED]>
AuthorDate: Wed Jun 27 15:52:25 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Tue Jul 10 22:16:00 2007 -0700

    [PPPOL2TP]: Use proper printf format specifier for size_t.
    
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 drivers/net/pppol2tp.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/pppol2tp.c b/drivers/net/pppol2tp.c
index 8a6bff5..5891a0f 100644
--- a/drivers/net/pppol2tp.c
+++ b/drivers/net/pppol2tp.c
@@ -890,11 +890,11 @@ static int pppol2tp_sendmsg(struct kiocb *iocb, struct 
socket *sock, struct msgh
        /* Debug */
        if (session->send_seq)
                PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
-                      "%s: send %d bytes, ns=%hu\n", session->name,
+                      "%s: send %Zd bytes, ns=%hu\n", session->name,
                       total_len, session->ns - 1);
        else
                PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
-                      "%s: send %d bytes\n", session->name, total_len);
+                      "%s: send %Zd bytes\n", session->name, total_len);
 
        if (session->debug & PPPOL2TP_MSG_DATA) {
                int i;
-
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