diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-03-20 06:44:02 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-21 19:06:51 -0700 |
commit | 32f3dde55ba1b28863c0f0611d2c9dcf2d728ec8 (patch) | |
tree | 3ec3edcdac9aadeae00ec2fa14696e5c352cf964 /drivers/atm/iphase.c | |
parent | fa665ccf01440644a3956ed039e51e1088cd0f15 (diff) |
atm: fix non-const printk argument
Change printk() argument to fix compiler warning.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm/iphase.c')
-rw-r--r-- | drivers/atm/iphase.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/atm/iphase.c b/drivers/atm/iphase.c index e1c7611e914..78c9736c357 100644 --- a/drivers/atm/iphase.c +++ b/drivers/atm/iphase.c @@ -977,9 +977,7 @@ static void xdump( u_char* cp, int length, char* prefix ) else pBuf += sprintf( pBuf, "." ); } - sprintf( pBuf, "\n" ); - // SPrint(prntBuf); - printk(prntBuf); + printk("%s\n", prntBuf); count += col; pBuf = prntBuf; } |