[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20090320094402.5bf234b3@nehalam>
Date: Fri, 20 Mar 2009 09:44:02 -0700
From: Stephen Hemminger <shemminger@...tta.com>
To: chas williams - CONTRACTOR <chas@....nrl.navy.mil>
Cc: David Miller <davem@...emloft.net>, netdev@...r.kernel.org
Subject: [PATCH] atm: fix non-const printk argument
Change printk() argument to fix compiler warning.
Signed-off-by: Stephen Hemminger <shemminger@...tta.com>
--- a/drivers/atm/iphase.c 2009-03-20 09:27:01.892901660 -0700
+++ b/drivers/atm/iphase.c 2009-03-20 09:27:26.415839648 -0700
@@ -977,9 +977,7 @@ static void xdump( u_char* cp, int len
else
pBuf += sprintf( pBuf, "." );
}
- sprintf( pBuf, "\n" );
- // SPrint(prntBuf);
- printk(prntBuf);
+ printk("%s\n", prntBuf);
count += col;
pBuf = prntBuf;
}
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists