From 231cee5bdb84045c3a31d9f602896d4f703acc82 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 19 Jul 2025 11:58:20 +0900 Subject: [PATCH] vmspawn: 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. Similar to 8139906eaaced08d7924abf012561a5e8e9fbf2a. Follow-up for 0fc45c8d20ad46ab9be0d8f29b16e606e0dd44ca. --- src/vmspawn/vmspawn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vmspawn/vmspawn.c b/src/vmspawn/vmspawn.c index 2eb7d3c7a90..29276e556a0 100644 --- a/src/vmspawn/vmspawn.c +++ b/src/vmspawn/vmspawn.c @@ -1,10 +1,10 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ #include +#include #include #include #include -#include #include #include -- 2.47.3