]> git.saurik.com Git - apple/xnu.git/blobdiff - tests/kqueue_add_and_trigger.c
xnu-4903.270.47.tar.gz
[apple/xnu.git] / tests / kqueue_add_and_trigger.c
index 15243a789a08b1175aa77d8560a99a9e09b70140..8dded5ed37cafce7a377d8331d42baaa5624ab48 100644 (file)
@@ -16,7 +16,7 @@ T_DECL(kqueue_add_and_trigger_evfilt_user, "Add and trigger EVFILT_USER events w
        const struct kevent kev = {
                .ident = 1,
                .filter = EVFILT_USER,
-               .flags = EV_ADD|EV_CLEAR,
+               .flags = EV_ADD | EV_CLEAR,
                .fflags = NOTE_TRIGGER,
        };
        const struct timespec timeout = {
@@ -32,6 +32,4 @@ T_DECL(kqueue_add_and_trigger_evfilt_user, "Add and trigger EVFILT_USER events w
        T_ASSERT_EQ(ret, 1, "kevent with add and trigger, ret");
        T_ASSERT_EQ(ret_kev.ident, 1, "kevent with add and trigger, ident");
        T_ASSERT_EQ(ret_kev.filter, EVFILT_USER, "kevent with add and trigger, filter");
-
 }
-