Date: Mon, 11 Jun 2018 19:35:41 +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: r334974 - head/sbin/dump Message-ID: <201806111935.w5BJZfA4046333@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806111935.w5BJZfA4046333>