svn commit: r334974 - head/sbin/dump
Warner Losh
imp at FreeBSD.org
Mon Jun 11 19:35:42 UTC 2018
Author: imp
Date: Mon Jun 11 19:35:41 2018
New Revision: 334974
URL: https://svnweb.freebsd.org/changeset/base/334974
Log:
Don't initialize c_count. We don't need to.
Modified:
head/sbin/dump/main.c
Modified: head/sbin/dump/main.c
==============================================================================
--- head/sbin/dump/main.c Mon Jun 11 19:34:47 2018 (r334973)
+++ head/sbin/dump/main.c Mon Jun 11 19:35:41 2018 (r334974)
@@ -100,8 +100,8 @@ main(int argc, char *argv[])
struct fstab *dt;
char *map, *mntpt;
int ch, mode, mntflags;
- int i, ret, anydirskipped, bflag = 0, Tflag = 0, honorlevel = 1;
- int just_estimate = 0, c_count = 0;
+ int i, ret, anydirskipped, c_count, bflag = 0, Tflag = 0, honorlevel = 1;
+ int just_estimate = 0;
ino_t maxino;
char *tmsg;
More information about the svn-src-all
mailing list