diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/xatol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xatol.c b/libbb/xatol.c index 1b281b1..74a3b99 100644 --- a/libbb/xatol.c +++ b/libbb/xatol.c @@ -127,7 +127,7 @@ unsigned long xatoul_range(const char *numstr, unsigned long lower, unsigned long upper) { - return xstrtol_range_sfx(numstr, 10, lower, upper, NULL); + return xstrtoul_range_sfx(numstr, 10, lower, upper, NULL); } unsigned long xatoul(const char *numstr) |