diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2003-12-20 21:19:41 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2003-12-20 21:19:41 +0000 |
commit | 68f014c3f647140e92107cb07f0b678ca2698286 (patch) | |
tree | af735be844807df313e8791766eb86f0538b4296 /usr.sbin/bgpd/imsg.c | |
parent | 6d38bf1a80dd5babaa86f4722838f982e0310e9d (diff) |
more cast cleanup imsg_compose takes now a void * argument. OK henning@
Diffstat (limited to 'usr.sbin/bgpd/imsg.c')
-rw-r--r-- | usr.sbin/bgpd/imsg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/imsg.c b/usr.sbin/bgpd/imsg.c index ecd6995719c..e2f72ca7576 100644 --- a/usr.sbin/bgpd/imsg.c +++ b/usr.sbin/bgpd/imsg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: imsg.c,v 1.4 2003/12/20 21:14:55 henning Exp $ */ +/* $OpenBSD: imsg.c,v 1.5 2003/12/20 21:19:40 claudio Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -84,7 +84,7 @@ get_imsg(int fd, struct imsg *imsg) } int -imsg_compose(int fd, int type, u_int32_t peerid, u_char *data, +imsg_compose(int fd, int type, u_int32_t peerid, void *data, u_int16_t datalen) { struct buf *wbuf; |