diff options
Diffstat (limited to 'coreutils/cut.c')
-rw-r--r-- | coreutils/cut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c index 240ce4bb9..53f343a33 100644 --- a/coreutils/cut.c +++ b/coreutils/cut.c | |||
@@ -264,7 +264,7 @@ int cut_main(int argc UNUSED_PARAM, char **argv) | |||
264 | /* now that the lists are parsed, we need to sort them to make life | 264 | /* now that the lists are parsed, we need to sort them to make life |
265 | * easier on us when it comes time to print the chars / fields / lines | 265 | * easier on us when it comes time to print the chars / fields / lines |
266 | */ | 266 | */ |
267 | qsort(cut_lists, nlists, sizeof(struct cut_list), cmpfunc); | 267 | qsort(cut_lists, nlists, sizeof(cut_lists[0]), cmpfunc); |
268 | } | 268 | } |
269 | 269 | ||
270 | { | 270 | { |