diff options
Diffstat (limited to 'coreutils/fold.c')
-rw-r--r-- | coreutils/fold.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/fold.c b/coreutils/fold.c index 3b5be64..45f4472 100644 --- a/coreutils/fold.c +++ b/coreutils/fold.c @@ -62,7 +62,7 @@ int fold_main(int argc, char **argv) flags = getopt32(argc, argv, "bsw:", &w_opt); if (flags & FLAG_WIDTH) - width = bb_xgetlarg(w_opt, 10, 1, 10000); + width = xatoul_range(w_opt, 1, 10000); argv += optind; if (!*argv) { |