From owner-svn-src-all@FreeBSD.ORG Thu Jun 11 14:37:19 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C8BA10656D0; Thu, 11 Jun 2009 14:37:19 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2A8048FC27; Thu, 11 Jun 2009 14:37:19 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n5BEbJXj050304; Thu, 11 Jun 2009 14:37:19 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5BEbJdC050303; Thu, 11 Jun 2009 14:37:19 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200906111437.n5BEbJdC050303@svn.freebsd.org> From: John Baldwin Date: Thu, 11 Jun 2009 14:37:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r194003 - head/sys/netinet X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 14:37:20 -0000 Author: jhb Date: Thu Jun 11 14:37:18 2009 New Revision: 194003 URL: http://svn.freebsd.org/changeset/base/194003 Log: Correct printf format type mismatches. Modified: head/sys/netinet/tcp_usrreq.c Modified: head/sys/netinet/tcp_usrreq.c ============================================================================== --- head/sys/netinet/tcp_usrreq.c Thu Jun 11 14:36:13 2009 (r194002) +++ head/sys/netinet/tcp_usrreq.c Thu Jun 11 14:37:18 2009 (r194003) @@ -1823,7 +1823,7 @@ db_print_tcpcb(struct tcpcb *tp, const c 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 c 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 c 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);