From f4697ce0f3e1f3e769853e82b58a2dcb2bf03a15 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Tue, 11 Jul 2023 01:57:48 +0200 Subject: [PATCH] Fix typo --- src/async.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/async.c b/src/async.c index 82576f2..689aea7 100644 --- a/src/async.c +++ b/src/async.c @@ -364,7 +364,7 @@ void async_thread(void) { if (epoll_ctl(epoll_fd, EPOLL_CTL_DEL, evt->fd, NULL) == -1) { if (errno == EBADF || errno == ENOENT) { // already closed fd or not found, do not die - critical("Unable to remove file descriptor from epoll instance"); + warning("Unable to remove file descriptor from epoll instance"); errno = 0; } else { critical("Unable to remove file descriptor from epoll instance");