mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-29 08:08:37 +00:00
Eliminate a variable that is set but never used.
This commit is contained in:
parent
3d9a9402b4
commit
5cc6677fdc
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=25942
@ -75,27 +75,26 @@ main(argc, argv)
|
||||
char *argv[];
|
||||
{
|
||||
register char **p, **start;
|
||||
int Hflag, Lflag, Pflag, ch;
|
||||
int Hflag, Lflag, ch;
|
||||
|
||||
(void)setlocale(LC_ALL, "");
|
||||
|
||||
(void)time(&now); /* initialize the time-of-day */
|
||||
|
||||
p = start = argv;
|
||||
Hflag = Lflag = Pflag = 0;
|
||||
Hflag = Lflag = 0;
|
||||
ftsoptions = FTS_NOSTAT | FTS_PHYSICAL;
|
||||
while ((ch = getopt(argc, argv, "HLPXdf:x")) != -1)
|
||||
switch (ch) {
|
||||
case 'H':
|
||||
Hflag = 1;
|
||||
Lflag = Pflag = 0;
|
||||
Lflag = 0;
|
||||
break;
|
||||
case 'L':
|
||||
Lflag = 1;
|
||||
Hflag = Pflag = 0;
|
||||
Hflag = 0;
|
||||
break;
|
||||
case 'P':
|
||||
Pflag = 1;
|
||||
Hflag = Lflag = 0;
|
||||
break;
|
||||
case 'X':
|
||||
|
Loading…
Reference in New Issue
Block a user