aboutsummaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-11-20 16:00:44 +0000
committerMatt Kraai <kraai@debian.org>2001-11-20 16:00:44 +0000
commit585f657e2dc79acfa4e758933886786c8edefbdf (patch)
tree637243aefce701f3e3f22577fcf0136673cc696a /findutils
parent0c390a76fe70ff6ae81dbb0728b7b9d29e0e3caf (diff)
downloadbusybox-585f657e2dc79acfa4e758933886786c8edefbdf.tar.gz
Fix undeclared variable error.
Diffstat (limited to 'findutils')
-rw-r--r--findutils/grep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/grep.c b/findutils/grep.c
index 0fe898c77..11913f264 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -234,7 +234,7 @@ static void destroy_regexes(void)
extern int grep_main(int argc, char **argv)
{
int opt;
-#ifdef CONFIG_FEATURE_GREP_CONTEXT
+#if defined (CONFIG_FEATURE_GREP_CONTEXT) || defined (CONFIG_FEATURE_GREP_EGREP_ALIAS)
char *junk;
#endif