aboutsummaryrefslogtreecommitdiff
path: root/toys/sort.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/sort.c')
-rw-r--r--toys/sort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/sort.c b/toys/sort.c
index 94729ee1..fabff694 100644
--- a/toys/sort.c
+++ b/toys/sort.c
@@ -308,7 +308,7 @@ static void sort_read(int fd, char *name)
if (CFG_SORT_BIG && (toys.optflags&FLAG_c)) {
int j = (toys.optflags&FLAG_u) ? -1 : 0;
- if (TT.lines && compare_keys((char **)&TT.lines, &line)>j)
+ if (TT.lines && compare_keys((void *)&TT.lines, &line)>j)
error_exit("%s: Check line %d\n", name, TT.linecount);
free(TT.lines);
TT.lines = (char **)line;