[IOMultiplexer] fixed copy paste fail in IOEngine_kevent.c
authorpk910 <philipp@zoelle1.de>
Sat, 22 Sep 2012 05:24:30 +0000 (07:24 +0200)
committerpk910 <philipp@zoelle1.de>
Sat, 22 Sep 2012 05:24:30 +0000 (07:24 +0200)
src/IOEngine_kevent.c

index fb96ecd78e743e9a30df3760ad4d0bb9cc1c2471..f729dbbe820694181ee43d4ebf6dda7b7c9bfb47 100644 (file)
@@ -60,7 +60,7 @@ static void engine_kevent_remove(struct IODescriptor *iofd) {
 static void engine_kevent_update(struct IODescriptor *iofd) {
     if(iofd->type == IOTYPE_TIMER) return;
     if(iofd->state == IO_CLOSED) {
-        engine_epoll_remove(iofd);
+        engine_kevent_remove(iofd);
         return;
     }
     struct kevent changes[2];