From: Yu Watanabe Date: Mon, 9 Jun 2025 00:43:52 +0000 (+0900) Subject: journal: use poll.h rather than sys/poll.h X-Git-Tag: v258-rc1~352^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8139906eaaced08d7924abf012561a5e8e9fbf2a;p=thirdparty%2Fsystemd.git 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. --- diff --git a/src/journal/journald-sync.c b/src/journal/journald-sync.c index b22cb54b125..4722cfa9a3f 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"