diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-08 12:49:22 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-08 12:49:22 +0000 |
commit | 1385899416a4396385ad421ae1f532be7103738a (patch) | |
tree | fc4d14a910593d1235318bb36abe5e9f72d2039e /coreutils/cal.c | |
parent | 5625415085e68ac5e150f54e685417c866620d76 (diff) | |
download | busybox-w32-1385899416a4396385ad421ae1f532be7103738a.tar.gz busybox-w32-1385899416a4396385ad421ae1f532be7103738a.tar.bz2 busybox-w32-1385899416a4396385ad421ae1f532be7103738a.zip |
attempt to regularize atoi mess.
Diffstat (limited to 'coreutils/cal.c')
-rw-r--r-- | coreutils/cal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/cal.c b/coreutils/cal.c index ef914128c..e2bc5ab12 100644 --- a/coreutils/cal.c +++ b/coreutils/cal.c | |||
@@ -112,9 +112,9 @@ int cal_main(int argc, char **argv) | |||
112 | } | 112 | } |
113 | } else { | 113 | } else { |
114 | if (argc == 2) { | 114 | if (argc == 2) { |
115 | month = bb_xgetularg10_bnd(*argv++, 1, 12); | 115 | month = xatoul_range(*argv++, 1, 12); |
116 | } | 116 | } |
117 | year = bb_xgetularg10_bnd(*argv, 1, 9999); | 117 | year = xatoul_range(*argv, 1, 9999); |
118 | } | 118 | } |
119 | 119 | ||
120 | blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian); | 120 | blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian); |