aboutsummaryrefslogtreecommitdiff
path: root/util-linux/hexdump.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-03-27 15:18:32 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-03-27 15:18:32 +0100
commit2c24806bf48cddcdaa32d654986e5c275a3d34f6 (patch)
tree6e7dec5a5c89aca5bbdcf33dd531d35da0b2c1f5 /util-linux/hexdump.c
parentef6747e290d0456d140129f28283e0761713da2e (diff)
downloadbusybox-2c24806bf48cddcdaa32d654986e5c275a3d34f6.tar.gz
hexdump: need to use xstrtoull for off_t
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/hexdump.c')
-rw-r--r--util-linux/hexdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c
index 43fc188bf..4d998b916 100644
--- a/util-linux/hexdump.c
+++ b/util-linux/hexdump.c
@@ -116,7 +116,7 @@ int hexdump_main(int argc, char **argv)
dumper->dump_length = xatoi_positive(optarg);
} /* else */
if (ch == 's') { /* compat: -s accepts hex numbers too */
- dumper->dump_skip = xstrtoul_range_sfx(
+ dumper->dump_skip = xstrtoull_range_sfx(
optarg,
/*base:*/ 0,
/*lo:*/ 0, /*hi:*/ OFF_T_MAX,