diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c index 505a8fd6b..643c0f3c9 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c @@ -152,7 +152,7 @@ int tail_main(int argc, char **argv) } /* open all the files */ - fds = (int *)xmalloc(sizeof(int) * (argc - optind + 1)); + fds = xmalloc(sizeof(int) * (argc - optind + 1)); argv += optind; nfiles = i = 0; |