diff options
author | Denys Vlasenko | 2010-01-18 12:25:09 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-01-18 12:25:09 +0100 |
commit | 573ba4e92e920df656e80ccdb11677315843ba7f (patch) | |
tree | 959447f2d24810b589bad0549dae355b4a8bb415 /coreutils | |
parent | 9e0879a1cb991e5305e2c226e56ba0080019f828 (diff) | |
download | busybox-573ba4e92e920df656e80ccdb11677315843ba7f.zip busybox-573ba4e92e920df656e80ccdb11677315843ba7f.tar.gz |
fix examples which used non-standard cut -b0-NNN
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-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 240ce4b..53f343a 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); } { |