diff options
author | Matt Kraai <kraai@debian.org> | 2001-11-20 16:00:44 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-11-20 16:00:44 +0000 |
commit | 585f657e2dc79acfa4e758933886786c8edefbdf (patch) | |
tree | 637243aefce701f3e3f22577fcf0136673cc696a /findutils | |
parent | 0c390a76fe70ff6ae81dbb0728b7b9d29e0e3caf (diff) | |
download | busybox-585f657e2dc79acfa4e758933886786c8edefbdf.tar.gz |
Fix undeclared variable error.
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/grep.c | 2 |
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 |