summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_tc.c
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-09-09 18:10:37 +0000
committerdg <dg@FreeBSD.org>1995-09-09 18:10:37 +0000
commit573c688a6892861601397d1797b75cf321e5a3b6 (patch)
tree5c5482fdb7693aa63c9bbb6d03a18f671dc76e7a /sys/kern/kern_tc.c
parentcd6723126c38898598ec0452a8e70293b6599034 (diff)
downloadFreeBSD-src-573c688a6892861601397d1797b75cf321e5a3b6.zip
FreeBSD-src-573c688a6892861601397d1797b75cf321e5a3b6.tar.gz
Fixed init functions argument type - caddr_t -> void *. Fixed a couple of
compiler warnings.
Diffstat (limited to 'sys/kern/kern_tc.c')
-rw-r--r--sys/kern/kern_tc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c
index 04af42b..ede7b6d 100644
--- a/sys/kern/kern_tc.c
+++ b/sys/kern/kern_tc.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
- * $Id: kern_clock.c,v 1.14 1995/07/29 11:40:12 bde Exp $
+ * $Id: kern_clock.c,v 1.15 1995/08/28 09:18:43 julian Exp $
*/
/* Portions of this software are covered by the following: */
@@ -79,7 +79,7 @@
* System initialization
*/
-static void initclocks __P(( caddr_t udata));
+static void initclocks __P((void *udata));
SYSINIT(clocks, SI_SUB_CLOCKS, SI_ORDER_FIRST, initclocks, NULL)
@@ -393,8 +393,8 @@ hardupdate(offset)
*/
/* ARGSUSED*/
static void
-initclocks( udata)
-caddr_t udata; /* not used*/
+initclocks(udata)
+ void *udata; /* not used*/
{
register int i;
OpenPOWER on IntegriCloud