about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2005-08-27 23:23:54 +0000
committerFlorian Westphal <fw@strlen.de>2005-08-27 23:23:54 +0000
commit12e288c0625bde5aa5a56b6d813abbe2b22d2af5 (patch)
tree3bf7c0b3f0e11f700ba5adfb1442911ecbc4f38a
parent733e15bb64ce44dcf597f5305e2c0cbf2d11875e (diff)
downloadngircd-12e288c0625bde5aa5a56b6d813abbe2b22d2af5.tar.gz
ngircd-12e288c0625bde5aa5a56b6d813abbe2b22d2af5.zip
removed misleading const qualifier
-rw-r--r--src/ngircd/io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/io.c b/src/ngircd/io.c
index 3782cd3c..4f0b7280 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.7 2005/08/27 20:27:07 fw Exp $";
+static char UNUSED id[] = "$Id: io.c,v 1.8 2005/08/27 23:23:54 fw Exp $";
 
 #include <assert.h>
 #include <stdlib.h>
@@ -521,7 +521,7 @@ io_dispatch_kqueue(struct timeval *tv)
 {
 	int i, total = 0, ret;
 	struct kevent kev[100];
-	const struct kevent *newevents;
+	struct kevent *newevents;
 	struct timespec ts;
 	int newevents_len;
 	short type;