Reformat all code using astyle.
[tinc] / src / event.c
index 5edd3a6..331872a 100644 (file)
@@ -41,7 +41,16 @@ static int io_compare(const io_t *a, const io_t *b) {
 #ifndef HAVE_MINGW
        return a->fd - b->fd;
 #else
-       return a->event - b->event;
+
+       if(a->event < b->event) {
+               return -1;
+       }
+
+       if(a->event > b->event) {
+               return 1;
+       }
+
+       return 0;
 #endif
 }