summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2009-06-11 14:37:18 +0000
committerjhb <jhb@FreeBSD.org>2009-06-11 14:37:18 +0000
commitea832e9f392b9c0006a2ae562a33fb0da0bc8112 (patch)
tree1442116483afd86fa4f7c42350558b1623c3c75f
parent59765b88ce93ed5b02bb6547fd112c4aa948048c (diff)
downloadFreeBSD-src-ea832e9f392b9c0006a2ae562a33fb0da0bc8112.zip
FreeBSD-src-ea832e9f392b9c0006a2ae562a33fb0da0bc8112.tar.gz
Correct printf format type mismatches.
-rw-r--r--sys/netinet/tcp_usrreq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c
index e787eed..80628fa 100644
--- a/sys/netinet/tcp_usrreq.c
+++ b/sys/netinet/tcp_usrreq.c
@@ -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);
OpenPOWER on IntegriCloud