From: Karel Zak Date: Tue, 15 May 2012 15:46:05 +0000 (+0200) Subject: term-utils: cleanup strtoxx_or_err() X-Git-Tag: v2.22-rc1~400 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b43d3a3a2ccfd6993ef030c27db1de0fc201ff55;p=thirdparty%2Futil-linux.git term-utils: cleanup strtoxx_or_err() Signed-off-by: Karel Zak --- diff --git a/term-utils/wall.c b/term-utils/wall.c index f302d454f0..ec9e93236d 100644 --- a/term-utils/wall.c +++ b/term-utils/wall.c @@ -110,7 +110,7 @@ main(int argc, char **argv) { int print_banner = TRUE; char *mbuf; size_t mbufsize; - long timeout = WRITE_TIME_OUT; + unsigned timeout = WRITE_TIME_OUT; setlocale(LC_ALL, ""); bindtextdomain(PACKAGE, LOCALEDIR); @@ -134,7 +134,7 @@ main(int argc, char **argv) { warnx(_("--nobanner is available only for root")); break; case 't': - timeout = strtoll_or_err(optarg, _("invalid timeout argument")); + timeout = strtou32_or_err(optarg, _("invalid timeout argument")); if (timeout < 1) errx(EXIT_FAILURE, _("invalid timeout argument: %s"), optarg); break;