aboutsummaryrefslogtreecommitdiff
path: root/findutils/grep.c
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/grep.c
parent0c390a76fe70ff6ae81dbb0728b7b9d29e0e3caf (diff)
downloadbusybox-w32-585f657e2dc79acfa4e758933886786c8edefbdf.tar.gz
busybox-w32-585f657e2dc79acfa4e758933886786c8edefbdf.tar.bz2
busybox-w32-585f657e2dc79acfa4e758933886786c8edefbdf.zip
Fix undeclared variable error.
Diffstat (limited to 'findutils/grep.c')
-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)
234extern int grep_main(int argc, char **argv) 234extern int grep_main(int argc, char **argv)
235{ 235{
236 int opt; 236 int opt;
237#ifdef CONFIG_FEATURE_GREP_CONTEXT 237#if defined (CONFIG_FEATURE_GREP_CONTEXT) || defined (CONFIG_FEATURE_GREP_EGREP_ALIAS)
238 char *junk; 238 char *junk;
239#endif 239#endif
240 240