diff options
Diffstat (limited to 'toys/posix/tail.c')
-rw-r--r-- | toys/posix/tail.c | 3 |
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; |