mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
drivers: atm: fix %d confusingly prefixed with 0x in format strings
Signed-off-by: Hans Wennborg <hans@hanshq.net> Acked-by: Chas Williams <chas@cmf.nrl.navy.mil> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
67a24ac18b
commit
597aec3f93
@ -2155,7 +2155,7 @@ static int eni_proc_read(struct atm_dev *dev,loff_t *pos,char *page)
|
||||
|
||||
if (!tx->send) continue;
|
||||
if (!--left) {
|
||||
return sprintf(page,"tx[%d]: 0x%ld-0x%ld "
|
||||
return sprintf(page, "tx[%d]: 0x%lx-0x%lx "
|
||||
"(%6ld bytes), rsv %d cps, shp %d cps%s\n",i,
|
||||
(unsigned long) (tx->send - eni_dev->ram),
|
||||
tx->send-eni_dev->ram+tx->words*4-1,tx->words*4,
|
||||
@ -2181,7 +2181,7 @@ static int eni_proc_read(struct atm_dev *dev,loff_t *pos,char *page)
|
||||
if (--left) continue;
|
||||
length = sprintf(page,"vcc %4d: ",vcc->vci);
|
||||
if (eni_vcc->rx) {
|
||||
length += sprintf(page+length,"0x%ld-0x%ld "
|
||||
length += sprintf(page+length, "0x%lx-0x%lx "
|
||||
"(%6ld bytes)",
|
||||
(unsigned long) (eni_vcc->recv - eni_dev->ram),
|
||||
eni_vcc->recv-eni_dev->ram+eni_vcc->words*4-1,
|
||||
|
Loading…
Reference in New Issue
Block a user