]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/initctl/initctl.c
initctl: (void)ify epoll_ctl()
[thirdparty/systemd.git] / src / initctl / initctl.c
index 96ea942b52bde427fed88e2ecfb03ee2dea8c084..150d0fb1990950b303f674493cbca21350d4317c 100644 (file)
@@ -221,7 +221,7 @@ static void fifo_free(Fifo *f) {
 
         if (f->fd >= 0) {
                 if (f->server)
-                        epoll_ctl(f->server->epoll_fd, EPOLL_CTL_DEL, f->fd, NULL);
+                        (void) epoll_ctl(f->server->epoll_fd, EPOLL_CTL_DEL, f->fd, NULL);
 
                 safe_close(f->fd);
         }