diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-10-31 03:54:56 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-31 03:54:56 -0400 |
commit | 21454aaad30651ba0dcc16fe5271bc12ee21f132 (patch) | |
tree | eb525494d6f80a0e855840bc588ae1f422348b04 /net/atm/clip.c | |
parent | 14d5e834f6b36667c7da56374645f99b6cf30814 (diff) |
net: replace NIPQUAD() in net/*/
Using NIPQUAD() with NIPQUAD_FMT, %d.%d.%d.%d or %u.%u.%u.%u
can be replaced with %pI4
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm/clip.c')
-rw-r--r-- | net/atm/clip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/atm/clip.c b/net/atm/clip.c index 5b5b96344ce6..2d33a83be799 100644 --- a/net/atm/clip.c +++ b/net/atm/clip.c | |||
@@ -822,8 +822,8 @@ static void atmarp_info(struct seq_file *seq, struct net_device *dev, | |||
822 | seq_printf(seq, "%-6s%-4s%-4s%5ld ", | 822 | seq_printf(seq, "%-6s%-4s%-4s%5ld ", |
823 | dev->name, svc ? "SVC" : "PVC", llc ? "LLC" : "NULL", exp); | 823 | dev->name, svc ? "SVC" : "PVC", llc ? "LLC" : "NULL", exp); |
824 | 824 | ||
825 | off = scnprintf(buf, sizeof(buf) - 1, "%d.%d.%d.%d", | 825 | off = scnprintf(buf, sizeof(buf) - 1, "%pI4", |
826 | NIPQUAD(entry->ip)); | 826 | &entry->ip); |
827 | while (off < 16) | 827 | while (off < 16) |
828 | buf[off++] = ' '; | 828 | buf[off++] = ' '; |
829 | buf[off] = '\0'; | 829 | buf[off] = '\0'; |