From a6a8443a07f891246fa68bda9cc8e3937b6ddbb6 Mon Sep 17 00:00:00 2001 From: "Alex Xu (Hello71)" Date: Mon, 23 Aug 2021 09:24:45 -0500 Subject: [PATCH] add missing sys/file.h include required for LOCK_EX etc on musl --- lib/device/dev-cache.c | 1 + tools/lvmdevices.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/lib/device/dev-cache.c b/lib/device/dev-cache.c index 4727ea652..d9227dfd5 100644 --- a/lib/device/dev-cache.c +++ b/lib/device/dev-cache.c @@ -29,6 +29,7 @@ #include #include #include +#include struct dev_iter { struct btree_iter *current; diff --git a/tools/lvmdevices.c b/tools/lvmdevices.c index 87c39eec4..73c33c932 100644 --- a/tools/lvmdevices.c +++ b/tools/lvmdevices.c @@ -17,6 +17,8 @@ #include "lib/device/device_id.h" #include "lib/device/dev-type.h" +#include + static void _search_devs_for_pvids(struct cmd_context *cmd, struct dm_list *search_pvids, struct dm_list *found_devs) { struct dev_iter *iter;