diff options
-rw-r--r-- | sys/kern/kern_watchdog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_watchdog.c b/sys/kern/kern_watchdog.c index b678384ffc2..ef620604f0f 100644 --- a/sys/kern/kern_watchdog.c +++ b/sys/kern/kern_watchdog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_watchdog.c,v 1.4 2006/04/19 09:55:32 dlg Exp $ */ +/* $OpenBSD: kern_watchdog.c,v 1.5 2006/07/12 21:31:23 mk Exp $ */ /* * Copyright (c) 2003 Markus Friedl. All rights reserved. @@ -35,7 +35,7 @@ int (*wdog_ctl_cb)(void *, int) = NULL; void *wdog_ctl_cb_arg = NULL; int wdog_period = 0; int wdog_auto = 1; -struct timeout wdog_timeout; +struct timeout wdog_timeout; void wdog_register(void *cb_arg, int (*cb)(void *, int)) |