diff options
author | dg <dg@FreeBSD.org> | 1995-09-09 18:10:37 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1995-09-09 18:10:37 +0000 |
commit | 573c688a6892861601397d1797b75cf321e5a3b6 (patch) | |
tree | 5c5482fdb7693aa63c9bbb6d03a18f671dc76e7a /sys/kern/sysv_msg.c | |
parent | cd6723126c38898598ec0452a8e70293b6599034 (diff) | |
download | FreeBSD-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/sysv_msg.c')
-rw-r--r-- | sys/kern/sysv_msg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/sysv_msg.c b/sys/kern/sysv_msg.c index 8f66ebe..533cf75 100644 --- a/sys/kern/sysv_msg.c +++ b/sys/kern/sysv_msg.c @@ -1,4 +1,4 @@ -/* $Id: sysv_msg.c,v 1.6 1995/08/28 09:18:46 julian Exp $ */ +/* $Id: sysv_msg.c,v 1.7 1995/08/30 00:33:00 bde Exp $ */ /* * Implementation of SVID messages @@ -26,7 +26,7 @@ #include <sys/msg.h> #include <sys/malloc.h> -static void msginit __P((caddr_t)); +static void msginit __P((void *)); SYSINIT(sysv_msg, SI_SUB_SYSV_MSG, SI_ORDER_FIRST, msginit, NULL) #define MSG_DEBUG @@ -46,7 +46,7 @@ struct msqid_ds *msqids; /* MSGMNI msqid_ds struct's */ void msginit(udata) - caddr_t udata; + void *udata; { register int i; |