From 7783248eaac715b813f0635b06cc140ea99bb4d9 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 12 Aug 2010 14:14:45 +0200 Subject: *: s/xatoi_u/xatoi_positive/g - I got bored of mistyping xatoi_u as xatou_i Signed-off-by: Denys Vlasenko --- procps/iostat.c | 4 ++-- procps/mpstat.c | 6 +++--- procps/nmeter.c | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'procps') diff --git a/procps/iostat.c b/procps/iostat.c index 573419e..8641c23 100644 --- a/procps/iostat.c +++ b/procps/iostat.c @@ -539,12 +539,12 @@ int iostat_main(int argc, char **argv) if (*argv) { /* Get interval */ - interval = xatoi_u(*argv); + interval = xatoi_positive(*argv); count = interval ? -1 : 1; argv++; if (*argv) /* Get count value */ - count = xatoi_u(*argv); + count = xatoi_positive(*argv); } /* Allocate space for device stats */ diff --git a/procps/mpstat.c b/procps/mpstat.c index 7610a68..85cbb45 100644 --- a/procps/mpstat.c +++ b/procps/mpstat.c @@ -930,14 +930,14 @@ int mpstat_main(int UNUSED_PARAM argc, char **argv) if (*argv) { /* Get interval */ - G.interval = xatoi_u(*argv); + G.interval = xatoi_positive(*argv); G.count = -1; argv++; if (*argv) { /* Get count value */ if (G.interval == 0) bb_show_usage(); - G.count = xatoi_u(*argv); + G.count = xatoi_positive(*argv); //if (*++argv) // bb_show_usage(); } @@ -979,7 +979,7 @@ int mpstat_main(int UNUSED_PARAM argc, char **argv) memset(G.cpu_bitmap, 0xff, G.cpu_bitmap_len); } else { /* Get CPU number */ - unsigned n = xatoi_u(t); + unsigned n = xatoi_positive(t); if (n >= G.cpu_nr) bb_error_msg_and_die("not that many processors"); n++; diff --git a/procps/nmeter.c b/procps/nmeter.c index bb1e819..9305856 100644 --- a/procps/nmeter.c +++ b/procps/nmeter.c @@ -422,7 +422,7 @@ static s_stat* init_int(const char *param) if (param[0] == '\0') { s->no = 1; } else { - int n = xatoi_u(param); + int n = xatoi_positive(param); s->no = n + 2; } return (s_stat*)s; -- cgit v1.1