From 573ba4e92e920df656e80ccdb11677315843ba7f Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 18 Jan 2010 12:25:09 +0100 Subject: fix examples which used non-standard cut -b0-NNN Signed-off-by: Denys Vlasenko --- coreutils/cut.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils') 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) /* now that the lists are parsed, we need to sort them to make life * easier on us when it comes time to print the chars / fields / lines */ - qsort(cut_lists, nlists, sizeof(struct cut_list), cmpfunc); + qsort(cut_lists, nlists, sizeof(cut_lists[0]), cmpfunc); } { -- cgit v1.2.3