Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Dec 2011 16:29:51 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r228587 - head/libexec/rbootd
Message-ID:  <201112161629.pBGGTprj016714@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Fri Dec 16 16:29:51 2011
New Revision: 228587
URL: http://svn.freebsd.org/changeset/base/228587

Log:
  In libexec/rbootd/utils.c, use the correct printf length modifiers for
  u_int32_t and size_t.
  
  MFC after:	1 week

Modified:
  head/libexec/rbootd/utils.c

Modified: head/libexec/rbootd/utils.c
==============================================================================
--- head/libexec/rbootd/utils.c	Fri Dec 16 16:07:39 2011	(r228586)
+++ head/libexec/rbootd/utils.c	Fri Dec 16 16:29:51 2011	(r228587)
@@ -82,8 +82,8 @@ static const char rcsid[] =
 void
 DispPkt(RMPCONN *rconn, int direct)
 {
-	static const char BootFmt[] = "\t\tRetCode:%u SeqNo:%lx SessID:%x Vers:%u";
-	static const char ReadFmt[] = "\t\tRetCode:%u Offset:%lx SessID:%x\n";
+	static const char BootFmt[] = "\t\tRetCode:%u SeqNo:%x SessID:%x Vers:%u";
+	static const char ReadFmt[] = "\t\tRetCode:%u Offset:%x SessID:%x\n";
 
 	struct tm *tmp;
 	struct rmp_packet *rmp;
@@ -166,7 +166,7 @@ DispPkt(RMPCONN *rconn, int direct)
 			GETWORD(rmp->r_rrpl.rmp_offset, t);
 			(void) fprintf(DbgFp, ReadFmt, rmp->r_rrpl.rmp_retcode,
 			        t, ntohs(rmp->r_rrpl.rmp_session));
-			(void) fprintf(DbgFp, "\t\tNoOfBytesSent: %d\n",
+			(void) fprintf(DbgFp, "\t\tNoOfBytesSent: %zu\n",
 			        rconn->rmplen - RMPREADSIZE(0));
 			break;
 		case RMP_BOOT_DONE:		/* boot complete */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201112161629.pBGGTprj016714>