diff --git a/sapi/fpm/fpm/events/kqueue.c b/sapi/fpm/fpm/events/kqueue.c index 1204a75ae1a39..09f5da12799be 100644 --- a/sapi/fpm/fpm/events/kqueue.c +++ b/sapi/fpm/fpm/events/kqueue.c @@ -81,7 +81,7 @@ static int fpm_event_kqueue_init(int max) /* {{{ */ kevents = calloc(max, sizeof(struct kevent)); if (!kevents) { - zlog(ZLOG_ERROR, "epoll: unable to allocate %d events", max); + zlog(ZLOG_ERROR, "kevent: unable to allocate %d events", max); return -1; } @@ -128,7 +128,7 @@ static int fpm_event_kqueue_wait(struct fpm_event_queue_s *queue, unsigned long /* trigger error unless signal interrupt */ if (errno != EINTR) { - zlog(ZLOG_WARNING, "epoll_wait() returns %d", errno); + zlog(ZLOG_WARNING, "kevent() returns %d", errno); return -1; } }