diff options
author | Rob Landley <rob@landley.net> | 2012-11-26 23:36:25 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-11-26 23:36:25 -0600 |
commit | a5f8c733d478a57ad03c0b0efe7fa995e4c364a2 (patch) | |
tree | d29ba5be6ee944e8510e97dea1a79e5af73431ab | |
parent | 9f8217ce73762c0ac4eea8e7ab2120ca6eb1361d (diff) | |
download | toybox-a5f8c733d478a57ad03c0b0efe7fa995e4c364a2.tar.gz |
Squash "type punned pointer" nonsense with a bigger hammer. (Sheesh.)
-rw-r--r-- | toys/posix/ls.c | 2 | ||||
-rw-r--r-- | toys/posix/tail.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/toys/posix/ls.c b/toys/posix/ls.c index 55de239f..fb45636b 100644 --- a/toys/posix/ls.c +++ b/toys/posix/ls.c @@ -445,7 +445,7 @@ void ls_main(void) } // Typecast means double_list->prev temporarirly goes in dirtree->parent - dlist_add_nomalloc((struct double_list **)&TT.files->child, + dlist_add_nomalloc((void *)&TT.files->child, (struct double_list *)dt); } 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; |