diff options
author | Denis Vlasenko | 2006-10-08 12:49:22 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-08 12:49:22 +0000 |
commit | 1385899416a4396385ad421ae1f532be7103738a (patch) | |
tree | fc4d14a910593d1235318bb36abe5e9f72d2039e /miscutils/mt.c | |
parent | 5625415085e68ac5e150f54e685417c866620d76 (diff) | |
download | busybox-1385899416a4396385ad421ae1f532be7103738a.zip busybox-1385899416a4396385ad421ae1f532be7103738a.tar.gz |
attempt to regularize atoi mess.
Diffstat (limited to 'miscutils/mt.c')
-rw-r--r-- | miscutils/mt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/mt.c b/miscutils/mt.c index f4a3be7..a2bb6be 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c @@ -84,7 +84,7 @@ int mt_main(int argc, char **argv) op.mt_op = code->value; if (argc >= 3) - op.mt_count = atoi(argv[2]); + op.mt_count = xatoi_u(argv[2]); else op.mt_count = 1; /* One, not zero, right? */ |