Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Jun 2018 19:32:49 +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: r334972 - head/sbin/dump
Message-ID:  <201806111932.w5BJWnuq046098@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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));



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