summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>2000-06-23 09:48:26 +0000
committerbrian <brian@FreeBSD.org>2000-06-23 09:48:26 +0000
commit8996addced130baf6de360fca7276d4f4488a69b (patch)
tree52cf976e5cef26c2dc552bccdf0f0bd64a7851de /usr.sbin/ppp
parent446b9bad356266e7a7cd5dfc49c5944819d074ef (diff)
downloadFreeBSD-src-8996addced130baf6de360fca7276d4f4488a69b.zip
FreeBSD-src-8996addced130baf6de360fca7276d4f4488a69b.tar.gz
Fix a printf-style arg cast (again)
Diffstat (limited to 'usr.sbin/ppp')
-rw-r--r--usr.sbin/ppp/bundle.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ppp/bundle.c b/usr.sbin/ppp/bundle.c
index 71106bb..36fb9be 100644
--- a/usr.sbin/ppp/bundle.c
+++ b/usr.sbin/ppp/bundle.c
@@ -1160,7 +1160,8 @@ bundle_ShowStatus(struct cmdargs const *arg)
(secs / 60) % 60, secs % 60);
}
prompt_Printf(arg->prompt, "\n Queued: %lu of %u\n",
- ip_QueueLen(&arg->bundle->ncp.ipcp), arg->bundle->cfg.ifqueue);
+ (unsigned long)ip_QueueLen(&arg->bundle->ncp.ipcp),
+ arg->bundle->cfg.ifqueue);
prompt_Printf(arg->prompt, "\nDefaults:\n");
prompt_Printf(arg->prompt, " Label: %s\n", arg->bundle->cfg.label);
OpenPOWER on IntegriCloud