From 8139906eaaced08d7924abf012561a5e8e9fbf2a Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 9 Jun 2025 09:43:52 +0900 Subject: [PATCH] journal: use poll.h rather than sys/poll.h This does not change anything, as poll.h is a one-line wrapper of sys/poll.h. Note that man pages e.g. poll(2) indicate to include poll.h rather than sys/poll.h. So, let's use poll.h. --- src/journal/journald-sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/journal/journald-sync.c b/src/journal/journald-sync.c index b22cb54b12..4722cfa9a3 100644 --- a/src/journal/journald-sync.c +++ b/src/journal/journald-sync.c @@ -1,8 +1,8 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ #include +#include #include -#include #include "sd-varlink.h"