diff --git a/kcheckpass/kcheckpass.c b/kcheckpass/kcheckpass.c index 0179546a8aff8ce140b22ba906e22cfd97e0d7bb..0654df00737aba6f4a7f2ec1c8a85c3cf7bc90c5 100644 --- a/kcheckpass/kcheckpass.c +++ b/kcheckpass/kcheckpass.c @@ -372,7 +372,7 @@ int main(int argc, char **argv) /* Setup the events */ EV_SET(&keventEvent[0], SIGUSR1, EVFILT_SIGNAL, EV_ADD, 0, 0, NULL); EV_SET(&keventEvent[1], SIGUSR2, EVFILT_SIGNAL, EV_ADD, 0, 0, NULL); - int setupResult = kevent(keventQueue, &keventEvent, 2, NULL, 0, NULL); + int setupResult = kevent(keventQueue, keventEvent, 2, NULL, 0, NULL); if (setupResult == -1) { message("Failed to attach event to the kqueue\n"); conv_server(ConvPutAuthError, 0);