svn commit: r334972 - head/sbin/dump

Warner Losh imp at FreeBSD.org
Mon Jun 11 19:32:52 UTC 2018


Author: imp
Date: Mon Jun 11 19:32:49 2018
New Revision: 334972
URL: https://svnweb.freebsd.org/changeset/base/334972

Log:
  Minor style polishing.
  
  Declare c_count and initialize it with other ints.
  
  Reported by: mjg@

Modified:
  head/sbin/dump/main.c

Modified: head/sbin/dump/main.c
==============================================================================
--- head/sbin/dump/main.c	Mon Jun 11 19:32:45 2018	(r334971)
+++ head/sbin/dump/main.c	Mon Jun 11 19:32:49 2018	(r334972)
@@ -101,9 +101,8 @@ main(int argc, char *argv[])
 	char *map, *mntpt;
 	int ch, mode, mntflags;
 	int i, ret, anydirskipped, bflag = 0, Tflag = 0, honorlevel = 1;
-	int just_estimate = 0;
+	int just_estimate = 0, c_count = 0;
 	ino_t maxino;
-	int c_count=0;
 	char *tmsg;
 
 	spcl.c_date = _time_to_time64(time(NULL));


More information about the svn-src-head mailing list