remove useless casts (type*) xzalloc(...)

This commit is contained in:
Denis Vlasenko
2006-12-22 18:37:07 +00:00
parent a6df5907d2
commit 4cccc03768
7 changed files with 13 additions and 16 deletions

View File

@ -360,7 +360,7 @@ int grep_main(int argc, char **argv)
lines_before = 0;
lines_after = 0;
} else if (lines_before > 0)
before_buf = (char **)xzalloc(lines_before * sizeof(char *));
before_buf = xzalloc(lines_before * sizeof(char *));
#else
/* with auto sanity checks */
opt_complementary = "H-h:e::f::c-n:q-n:l-n";