From: David S. Miller Date: Wed, 27 Jun 2007 22:52:25 +0000 (-0700) Subject: [PPPOL2TP]: Use proper printf format specifier for size_t. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=38d15b656258b52a659fcf3e181f85b51bd1851f;p=linux-beck.git [PPPOL2TP]: Use proper printf format specifier for size_t. Signed-off-by: David S. Miller --- diff --git a/drivers/net/pppol2tp.c b/drivers/net/pppol2tp.c index 8a6bff5c3849..5891a0fbdc8b 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;