aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tail.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-19 23:36:04 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-19 23:36:04 +0000
commit054e71820ce24b47f88465bb95c303d558355a91 (patch)
tree0f82f8e3d225f3bcefdbf7070ae0716f1b309630 /coreutils/tail.c
parenteded4f7a23932a878ae06ba41964411299db5efb (diff)
downloadbusybox-w32-054e71820ce24b47f88465bb95c303d558355a91.tar.gz
busybox-w32-054e71820ce24b47f88465bb95c303d558355a91.tar.bz2
busybox-w32-054e71820ce24b47f88465bb95c303d558355a91.zip
remove casts from xmalloc()
git-svn-id: svn://busybox.net/trunk/busybox@17011 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/tail.c')
-rw-r--r--coreutils/tail.c2
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)
152 } 152 }
153 153
154 /* open all the files */ 154 /* open all the files */
155 fds = (int *)xmalloc(sizeof(int) * (argc - optind + 1)); 155 fds = xmalloc(sizeof(int) * (argc - optind + 1));
156 156
157 argv += optind; 157 argv += optind;
158 nfiles = i = 0; 158 nfiles = i = 0;