diff mbox series

Fix breakage due to commit e7596c8

Message ID 20250114165256.798622-1-stefano.babic@swupdate.org
State Accepted
Headers show
Series Fix breakage due to commit e7596c8 | expand

Commit Message

Stefano Babic Jan. 14, 2025, 4:52 p.m. UTC
Build is not successful with without_lua_defconfig. Readd missing header
to set PATH_MAX.

Signed-off-by: Stefano Babic <stefano.babic@swupdate.org>
---
 handlers/raw_handler.c | 1 +
 1 file changed, 1 insertion(+)

--
2.43.0
diff mbox series

Patch

diff --git a/handlers/raw_handler.c b/handlers/raw_handler.c
index d5cb9b0f..59a964a0 100644
--- a/handlers/raw_handler.c
+++ b/handlers/raw_handler.c
@@ -11,6 +11,7 @@ 
 #include <unistd.h>
 #include <errno.h>
 #include <libgen.h>
+#include <linux/fs.h>

 #include "swupdate_image.h"
 #include "handler.h"