summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>2000-06-18 10:07:53 +0000
committerbrian <brian@FreeBSD.org>2000-06-18 10:07:53 +0000
commitd043bb7c6cd6a638726572d01b966ad75573a43e (patch)
tree76aad85d6131f1ecc8a48e5452530b31256dce8d /usr.sbin/ppp
parentb88daebd21c57cbc2bca2a7c5b4c24b2db6f6598 (diff)
downloadFreeBSD-src-d043bb7c6cd6a638726572d01b966ad75573a43e.zip
FreeBSD-src-d043bb7c6cd6a638726572d01b966ad75573a43e.tar.gz
Fix a printf-style format error
Diffstat (limited to 'usr.sbin/ppp')
-rw-r--r--usr.sbin/ppp/bundle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ppp/bundle.c b/usr.sbin/ppp/bundle.c
index 66efa93..71106bb 100644
--- a/usr.sbin/ppp/bundle.c
+++ b/usr.sbin/ppp/bundle.c
@@ -1159,7 +1159,7 @@ bundle_ShowStatus(struct cmdargs const *arg)
prompt_Printf(arg->prompt, ", up time %d:%02d:%02d", secs / 3600,
(secs / 60) % 60, secs % 60);
}
- prompt_Printf(arg->prompt, "\n Queued: %u of %u\n",
+ prompt_Printf(arg->prompt, "\n Queued: %lu of %u\n",
ip_QueueLen(&arg->bundle->ncp.ipcp), arg->bundle->cfg.ifqueue);
prompt_Printf(arg->prompt, "\nDefaults:\n");
OpenPOWER on IntegriCloud