diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-12 14:14:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-12 14:14:45 +0200 |
commit | 7783248eaac715b813f0635b06cc140ea99bb4d9 (patch) | |
tree | b7c3acbdf7e45afdb31a721a693f0a8a65f80730 /coreutils/date.c | |
parent | 7bfbbd434a6f435b0287cd25406927c630b03f68 (diff) | |
download | busybox-w32-7783248eaac715b813f0635b06cc140ea99bb4d9.tar.gz busybox-w32-7783248eaac715b813f0635b06cc140ea99bb4d9.tar.bz2 busybox-w32-7783248eaac715b813f0635b06cc140ea99bb4d9.zip |
*: 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 'coreutils/date.c')
-rw-r--r-- | coreutils/date.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/date.c b/coreutils/date.c index cb41724af..3ce352c8d 100644 --- a/coreutils/date.c +++ b/coreutils/date.c | |||
@@ -300,7 +300,7 @@ int date_main(int argc UNUSED_PARAM, char **argv) | |||
300 | scale = 1; | 300 | scale = 1; |
301 | pres = 9; | 301 | pres = 9; |
302 | if (n) { | 302 | if (n) { |
303 | pres = xatoi_u(p); | 303 | pres = xatoi_positive(p); |
304 | if (pres == 0) | 304 | if (pres == 0) |
305 | pres = 9; | 305 | pres = 9; |
306 | m = 9 - pres; | 306 | m = 9 - pres; |