aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/tail.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-11-26 23:36:25 -0600
committerRob Landley <rob@landley.net>2012-11-26 23:36:25 -0600
commita5f8c733d478a57ad03c0b0efe7fa995e4c364a2 (patch)
treed29ba5be6ee944e8510e97dea1a79e5af73431ab /toys/posix/tail.c
parent9f8217ce73762c0ac4eea8e7ab2120ca6eb1361d (diff)
downloadtoybox-a5f8c733d478a57ad03c0b0efe7fa995e4c364a2.tar.gz
Squash "type punned pointer" nonsense with a bigger hammer. (Sheesh.)
Diffstat (limited to 'toys/posix/tail.c')
-rw-r--r--toys/posix/tail.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/toys/posix/tail.c b/toys/posix/tail.c
index bdbbfb30..8f63902a 100644
--- a/toys/posix/tail.c
+++ b/toys/posix/tail.c
@@ -156,8 +156,7 @@ static void do_tail(int fd, char *name)
if (!(new = get_chunk(fd, sizeof(toybuf)))) break;
// append in order
- dlist_add_nomalloc((struct double_list **)&list,
- (struct double_list *)new);
+ dlist_add_nomalloc((void *)&list, (struct double_list *)new);
// Measure new chunk, discarding extra data from buffer
len = new->len;