From 82720cf8ad0ede0f6edf87bf5f729545acb5f198 Mon Sep 17 00:00:00 2001 From: jhb Date: Tue, 30 Jul 2013 16:20:54 +0000 Subject: Apply a casting sledgehammer. Submitted by: dhw --- usr.sbin/watchdogd/watchdogd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/watchdogd/watchdogd.c') diff --git a/usr.sbin/watchdogd/watchdogd.c b/usr.sbin/watchdogd/watchdogd.c index 9d405c9..9b4440c 100644 --- a/usr.sbin/watchdogd/watchdogd.c +++ b/usr.sbin/watchdogd/watchdogd.c @@ -774,7 +774,7 @@ parseargs(int argc, char *argv[]) struct timespec ts; pow2ns_to_ts(timeout, &ts); - if (pretimeout >= ts.tv_sec) { + if (pretimeout >= (uintmax_t)ts.tv_sec) { errx(EX_USAGE, "pretimeout (%d) >= timeout (%d -> %ld)\n" "see manual section TIMEOUT RESOLUTION", -- cgit v1.1