diff options
author | brian <brian@cvs.openbsd.org> | 2000-06-18 10:09:00 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 2000-06-18 10:09:00 +0000 |
commit | a99dca6ec304b6a9e83fee9cfbae66b392291e58 (patch) | |
tree | 0050c3b49056d898c18d36ce004f8c5c7a0bca10 | |
parent | 4854d0bfa04291b919d0a22504785b1b2c4b5af9 (diff) |
Fix a printf-style format error
-rw-r--r-- | usr.sbin/ppp/ppp/bundle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/ppp/bundle.c b/usr.sbin/ppp/ppp/bundle.c index 1c499911da6..1a6fb523a43 100644 --- a/usr.sbin/ppp/ppp/bundle.c +++ b/usr.sbin/ppp/ppp/bundle.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: bundle.c,v 1.37 2000/06/13 09:57:50 brian Exp $ + * $OpenBSD: bundle.c,v 1.38 2000/06/18 10:08:59 brian Exp $ */ #include <sys/param.h> @@ -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"); |