aboutsummaryrefslogtreecommitdiff
path: root/findutils/grep.c
diff options
context:
space:
mode:
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 8bb38f95c..76f656237 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -360,7 +360,7 @@ int grep_main(int argc, char **argv)
360 lines_before = 0; 360 lines_before = 0;
361 lines_after = 0; 361 lines_after = 0;
362 } else if (lines_before > 0) 362 } else if (lines_before > 0)
363 before_buf = (char **)xzalloc(lines_before * sizeof(char *)); 363 before_buf = xzalloc(lines_before * sizeof(char *));
364#else 364#else
365 /* with auto sanity checks */ 365 /* with auto sanity checks */
366 opt_complementary = "H-h:e::f::c-n:q-n:l-n"; 366 opt_complementary = "H-h:e::f::c-n:q-n:l-n";