Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Aug 2020 02:48:19 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r364004 - head/sbin/mount
Message-ID:  <202008070248.0772mJvY035101@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Fri Aug  7 02:48:19 2020
New Revision: 364004
URL: https://svnweb.freebsd.org/changeset/base/364004

Log:
  All the other printf() calls cast to (void) here, do the two newer ones for
  consistency.

Modified:
  head/sbin/mount/mount.c

Modified: head/sbin/mount/mount.c
==============================================================================
--- head/sbin/mount/mount.c	Fri Aug  7 01:05:10 2020	(r364003)
+++ head/sbin/mount/mount.c	Fri Aug  7 02:48:19 2020	(r364004)
@@ -697,9 +697,9 @@ prmount(struct statfs *sfp)
 			    (uintmax_t)sfp->f_syncreads,
 			    (uintmax_t)sfp->f_asyncreads);
 		if (sfp->f_fsid.val[0] != 0 || sfp->f_fsid.val[1] != 0) {
-			printf(", fsid ");
+			(void)printf(", fsid ");
 			for (i = 0; i < sizeof(sfp->f_fsid); i++)
-				printf("%02x", ((u_char *)&sfp->f_fsid)[i]);
+				(void)printf("%02x", ((u_char *)&sfp->f_fsid)[i]);
 		}
 	}
 	(void)printf(")\n");



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