From b5626796710916c5895db524cfb82ff0f54d348a Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Tue, 31 Jul 2012 16:55:41 +0000 Subject: [PATCH] find: Remove unnecessary and inconsistent initialization. Submitted by: jhb --- usr.bin/find/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/find/main.c b/usr.bin/find/main.c index 68972e41223d..b18255773f0b 100644 --- a/usr.bin/find/main.c +++ b/usr.bin/find/main.c @@ -64,7 +64,7 @@ __FBSDID("$FreeBSD$"); time_t now; /* time find was run */ int dotfd; /* starting directory */ int ftsoptions; /* options for the ftsopen(3) call */ -int ignore_readdir_race = 0; /* ignore readdir race */ +int ignore_readdir_race; /* ignore readdir race */ int isdeprecated; /* using deprecated syntax */ int isdepth; /* do directories on post-order visit */ int isoutput; /* user specified output operator */