commit | 7783248eaac715b813f0635b06cc140ea99bb4d9 | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Thu Aug 12 14:14:45 2010 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Thu Aug 12 14:14:45 2010 +0200 |
tree | b7c3acbdf7e45afdb31a721a693f0a8a65f80730 | |
parent | 7bfbbd434a6f435b0287cd25406927c630b03f68 [diff] [blame] |
*: 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>
diff --git a/coreutils/date.c b/coreutils/date.c index cb41724..3ce352c 100644 --- a/coreutils/date.c +++ b/coreutils/date.c
@@ -300,7 +300,7 @@ scale = 1; pres = 9; if (n) { - pres = xatoi_u(p); + pres = xatoi_positive(p); if (pres == 0) pres = 9; m = 9 - pres;