Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Jan 2012 21:21:57 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r229209 - stable/9/usr.bin/rwho
Message-ID:  <201201012121.q01LLw4o031413@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Sun Jan  1 21:21:57 2012
New Revision: 229209
URL: http://svn.freebsd.org/changeset/base/229209

Log:
  MFC r226427:
  
  Build rwho(1) with WARNS=6.
  
  The only reason why it didn't build with WARNS=6, is because of some
  simple to fix string formatting bugs.

Modified:
  stable/9/usr.bin/rwho/Makefile
  stable/9/usr.bin/rwho/rwho.c
Directory Properties:
  stable/9/usr.bin/rwho/   (props changed)

Modified: stable/9/usr.bin/rwho/Makefile
==============================================================================
--- stable/9/usr.bin/rwho/Makefile	Sun Jan  1 21:12:29 2012	(r229208)
+++ stable/9/usr.bin/rwho/Makefile	Sun Jan  1 21:21:57 2012	(r229209)
@@ -3,6 +3,4 @@
 
 PROG=	rwho
 
-WARNS?=	1
-
 .include <bsd.prog.mk>

Modified: stable/9/usr.bin/rwho/rwho.c
==============================================================================
--- stable/9/usr.bin/rwho/rwho.c	Sun Jan  1 21:12:29 2012	(r229208)
+++ stable/9/usr.bin/rwho/rwho.c	Sun Jan  1 21:21:57 2012	(r229209)
@@ -165,9 +165,10 @@ main(int argc, char *argv[])
 			 d_first ? "%e %b %R" : "%b %e %R",
 			 localtime(&t));
 		(void)sprintf(buf, "%s:%-.*s", mp->myhost,
-		   sizeof(mp->myutmp.out_line), mp->myutmp.out_line);
+		   (int)sizeof(mp->myutmp.out_line), mp->myutmp.out_line);
 		printf("%-*.*s %-*s %s",
-		   sizeof(mp->myutmp.out_name), sizeof(mp->myutmp.out_name),
+		   (int)sizeof(mp->myutmp.out_name),
+		   (int)sizeof(mp->myutmp.out_name),
 		   mp->myutmp.out_name,
 		   width,
 		   buf,



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