From 8305ee8d868d7045918ef2f2ab5df53851770d2c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ahelenia=20Ziemia=C5=84ska?= Date: Thu, 15 Aug 2024 22:15:44 +0200 Subject: [PATCH] erofs-utils: lib: exclude: #include PATH_MAX workaround MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes build on the hurd. Signed-off-by: Ahelenia Ziemiańska Link: https://lore.kernel.org/r/xs4azw3vs7oryqnpkvzsl6qbmma6p646igoklia2fextt6pdiw@tarta.nabijaczleweli.xyz Signed-off-by: Gao Xiang --- lib/exclude.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/exclude.c b/lib/exclude.c index e3c4ed5..5f6107b 100644 --- a/lib/exclude.c +++ b/lib/exclude.c @@ -8,6 +8,7 @@ #include "erofs/list.h" #include "erofs/print.h" #include "erofs/exclude.h" +#include "erofs/internal.h" #define EXCLUDE_RULE_EXACT_SIZE offsetof(struct erofs_exclude_rule, reg) #define EXCLUDE_RULE_REGEX_SIZE sizeof(struct erofs_exclude_rule) -- 2.34.1