From e66b233e8375c570de282568c0c092a4a390001e Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 20 Sep 2025 01:36:58 +0900 Subject: [PATCH] run: include sys/stat.h again This partially reverts 9adb4685dffadb3991535a8d990ce35132b6d9a6. For the case that sys/stat.h is not included indirectly by other headers. Fixes the following error: ``` ../src/run/run.c: In function 'fchown_to_capsule': ../src/run/run.c:2128:21: error: storage size of 'st' isn't known 2128 | struct stat st; | ^~ ``` --- src/run/run.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/run/run.c b/src/run/run.c index 3c5698d9cd1..9f9e56a3c19 100644 --- a/src/run/run.c +++ b/src/run/run.c @@ -5,6 +5,7 @@ #include #include #include +#include #include #include "sd-bus.h" -- 2.47.3