aboutsummaryrefslogtreecommitdiff
path: root/sbin/dump
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2018-06-11 19:35:41 +0000
committerWarner Losh <imp@FreeBSD.org>2018-06-11 19:35:41 +0000
commite26ce92b5575b95a3b2254713ba8a31666ec5a0b (patch)
tree3ced774db146d795f8d936de898bdc284d3f7aca /sbin/dump
parent2c8cf0c505f6316e4afc30b4c8520c306ceee6f9 (diff)
downloadsrc-e26ce92b5575b95a3b2254713ba8a31666ec5a0b.tar.gz
src-e26ce92b5575b95a3b2254713ba8a31666ec5a0b.zip
Don't initialize c_count. We don't need to.
Notes
Notes: svn path=/head/; revision=334974
Diffstat (limited to 'sbin/dump')
-rw-r--r--sbin/dump/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dump/main.c b/sbin/dump/main.c
index eb12144de920..fbe8e8f97f3a 100644
--- a/sbin/dump/main.c
+++ b/sbin/dump/main.c
@@ -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;