From: Florian Westphal Date: Sat, 27 Aug 2005 20:27:07 +0000 (+0000) Subject: fix kevent() warning on powerpc-apple-darwin8-gcc-4.0.0 X-Git-Tag: rel-0-10-0-pre1~113 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=f36337fab30ebe24e526ad6e3cd4e751b5d017d7;hp=1a46b37bd586a5678f41447eb4b0f8d4374a3c74 fix kevent() warning on powerpc-apple-darwin8-gcc-4.0.0 --- diff --git a/src/ngircd/io.c b/src/ngircd/io.c index 7c1a5517..3782cd3c 100644 --- a/src/ngircd/io.c +++ b/src/ngircd/io.c @@ -12,7 +12,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: io.c,v 1.6 2005/08/27 20:25:54 fw Exp $"; +static char UNUSED id[] = "$Id: io.c,v 1.7 2005/08/27 20:27:07 fw Exp $"; #include #include @@ -521,7 +521,7 @@ io_dispatch_kqueue(struct timeval *tv) { int i, total = 0, ret; struct kevent kev[100]; - struct kevent *newevents; + const struct kevent *newevents; struct timespec ts; int newevents_len; short type;