svn commit: r305233 - stable/10/cddl/contrib/opensolaris/lib/libzpool/common

Ngie Cooper ngie at FreeBSD.org
Thu Sep 1 19:31:48 UTC 2016


Author: ngie
Date: Thu Sep  1 19:31:47 2016
New Revision: 305233
URL: https://svnweb.freebsd.org/changeset/base/305233

Log:
  MFstable/11 r305225:
  
  MFC r303573:
  
  Cast result from third parameter to int instead of promoting it to size_t
  
  This resolves a -Wformat issue when the value is used as a format width
  precision specifier, i.e. %*s

Modified:
  stable/10/cddl/contrib/opensolaris/lib/libzpool/common/util.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/cddl/contrib/opensolaris/lib/libzpool/common/util.c
==============================================================================
--- stable/10/cddl/contrib/opensolaris/lib/libzpool/common/util.c	Thu Sep  1 19:30:52 2016	(r305232)
+++ stable/10/cddl/contrib/opensolaris/lib/libzpool/common/util.c	Thu Sep  1 19:31:47 2016	(r305233)
@@ -108,7 +108,7 @@ show_vdev_stats(const char *desc, const 
 		(void) printf("%*s%s%*s%*s%*s %5s %5s %5s %5s %5s %5s %5s\n",
 		    indent, "",
 		    prefix,
-		    indent + strlen(prefix) - 25 - (vs->vs_space ? 0 : 12),
+		    (int)(indent + strlen(prefix) - 25 - (vs->vs_space ? 0 : 12)),
 		    desc,
 		    vs->vs_space ? 6 : 0, vs->vs_space ? used : "",
 		    vs->vs_space ? 6 : 0, vs->vs_space ? avail : "",


More information about the svn-src-all mailing list