diff options
author | Denys Vlasenko | 2010-08-12 14:14:45 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-08-12 14:14:45 +0200 |
commit | 7783248eaac715b813f0635b06cc140ea99bb4d9 (patch) | |
tree | b7c3acbdf7e45afdb31a721a693f0a8a65f80730 /util-linux/hexdump.c | |
parent | 7bfbbd434a6f435b0287cd25406927c630b03f68 (diff) | |
download | busybox-7783248eaac715b813f0635b06cc140ea99bb4d9.zip busybox-7783248eaac715b813f0635b06cc140ea99bb4d9.tar.gz |
*: s/xatoi_u/xatoi_positive/g - I got bored of mistyping xatoi_u as xatou_i
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/hexdump.c')
-rw-r--r-- | util-linux/hexdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c index 2eb5e57..7b89e6f 100644 --- a/util-linux/hexdump.c +++ b/util-linux/hexdump.c @@ -90,7 +90,7 @@ int hexdump_main(int argc, char **argv) bb_dump_addfile(dumper, optarg); } /* else */ if (ch == 'n') { - dumper->dump_length = xatoi_u(optarg); + dumper->dump_length = xatoi_positive(optarg); } /* else */ if (ch == 's') { /* compat: -s accepts hex numbers too */ dumper->dump_skip = xstrtoul_range_sfx(optarg, /*base:*/ 0, /*lo:*/ 0, /*hi:*/ LONG_MAX, suffixes); |