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 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'procps/iostat.c') diff --git a/procps/iostat.c b/procps/iostat.c index 573419e1c..8641c2391 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 */ -- cgit v1.2.3