diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2005-08-08 13:08:10 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2005-08-08 13:08:10 +0000 |
commit | f7fc53e908eb14e7458052c6cb35e97dc6b621fc (patch) | |
tree | 0d70d7a7a5c08a0d869ab8c653682e38eded034b /usr.sbin/watchdogd/watchdogd.c | |
parent | 75377c099d81ba70332da42f0ed8626fc34c05de (diff) |
Use unsigned integers for period and nperiod.
ok henning@
Diffstat (limited to 'usr.sbin/watchdogd/watchdogd.c')
-rw-r--r-- | usr.sbin/watchdogd/watchdogd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/watchdogd/watchdogd.c b/usr.sbin/watchdogd/watchdogd.c index 6348b373e1c..9a01bd8f3e5 100644 --- a/usr.sbin/watchdogd/watchdogd.c +++ b/usr.sbin/watchdogd/watchdogd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: watchdogd.c,v 1.2 2005/08/08 12:48:06 henning Exp $ */ +/* $OpenBSD: watchdogd.c,v 1.3 2005/08/08 13:08:09 mbalmer Exp $ */ /* * Copyright (c) 2005 Marc Balmer <marc@msys.ch> @@ -53,8 +53,8 @@ main(int argc, char *argv[]) { const char *errstr; size_t len; - u_int interval; - int ch, period, nperiod, trigauto, sauto, speriod; + u_int interval, period, nperiod; + int ch, trigauto, sauto, speriod; int daemonize, retval; int mib[3]; |