summaryrefslogtreecommitdiffstats
path: root/usr.bin/netstat/if.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/netstat/if.c')
-rw-r--r--usr.bin/netstat/if.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/netstat/if.c b/usr.bin/netstat/if.c
index 46ce775..a87d68b 100644
--- a/usr.bin/netstat/if.c
+++ b/usr.bin/netstat/if.c
@@ -438,9 +438,11 @@ intpr(int interval, void (*pfunc)(char *), int af)
printf("%*s %-17.17s",
Wflag ? 27 : 25, "", fmt);
if (ifma->ifma_addr->sa_family == AF_LINK) {
- printf(" %8lu", IFA_STAT(imcasts));
+ printf(" %8ju",
+ (uintmax_t )IFA_STAT(imcasts));
printf("%*s", bflag ? 17 : 6, "");
- printf(" %8lu", IFA_STAT(omcasts));
+ printf(" %8ju",
+ (uintmax_t )IFA_STAT(omcasts));
}
putchar('\n');
}
OpenPOWER on IntegriCloud