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 /procps/nmeter.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 'procps/nmeter.c')
-rw-r--r-- | procps/nmeter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/nmeter.c b/procps/nmeter.c index bb1e819a6..930585695 100644 --- a/procps/nmeter.c +++ b/procps/nmeter.c | |||
@@ -422,7 +422,7 @@ static s_stat* init_int(const char *param) | |||
422 | if (param[0] == '\0') { | 422 | if (param[0] == '\0') { |
423 | s->no = 1; | 423 | s->no = 1; |
424 | } else { | 424 | } else { |
425 | int n = xatoi_u(param); | 425 | int n = xatoi_positive(param); |
426 | s->no = n + 2; | 426 | s->no = n + 2; |
427 | } | 427 | } |
428 | return (s_stat*)s; | 428 | return (s_stat*)s; |