Correct printf format type mismatches.

This commit is contained in:
John Baldwin 2009-06-11 14:37:18 +00:00
parent 1a0e7cfc42
commit a13c655c64
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=194003

View File

@ -1823,7 +1823,7 @@ db_print_tcpcb(struct tcpcb *tp, const char *name, int indent)
tp->snd_recover);
db_print_indent(indent);
db_printf("t_maxopd: %u t_rcvtime: %u t_startime: %u\n",
db_printf("t_maxopd: %u t_rcvtime: %d t_startime: %d\n",
tp->t_maxopd, tp->t_rcvtime, tp->t_starttime);
db_print_indent(indent);
@ -1854,7 +1854,7 @@ db_print_tcpcb(struct tcpcb *tp, const char *name, int indent)
tp->snd_scale, tp->rcv_scale, tp->request_r_scale);
db_print_indent(indent);
db_printf("ts_recent: %u ts_recent_age: %u\n",
db_printf("ts_recent: %u ts_recent_age: %d\n",
tp->ts_recent, tp->ts_recent_age);
db_print_indent(indent);
@ -1863,7 +1863,7 @@ db_print_tcpcb(struct tcpcb *tp, const char *name, int indent)
db_print_indent(indent);
db_printf("snd_ssthresh_prev: %lu snd_recover_prev: 0x%08x "
"t_badrxtwin: %u\n", tp->snd_ssthresh_prev,
"t_badrxtwin: %d\n", tp->snd_ssthresh_prev,
tp->snd_recover_prev, tp->t_badrxtwin);
db_print_indent(indent);