Fix a printf-style format error

This commit is contained in:
Brian Somers 2000-06-18 10:07:53 +00:00
parent a72fda7154
commit 669b99659d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=61800

View File

@ -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");