From b43d3a3a2ccfd6993ef030c27db1de0fc201ff55 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 15 May 2012 17:46:05 +0200 Subject: term-utils: cleanup strtoxx_or_err() Signed-off-by: Karel Zak --- term-utils/wall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'term-utils/wall.c') diff --git a/term-utils/wall.c b/term-utils/wall.c index f302d454f..ec9e93236 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; -- cgit v1.2.3-55-g7522