Fix a printf-style arg cast (again)

This commit is contained in:
Brian Somers 2000-06-23 09:48:26 +00:00
parent b25838b462
commit 77fc031d50
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=62000

View File

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