mirror of
https://git.yoctoproject.org/poky
synced 2026-08-02 16:17:44 +02:00
(From OE-Core rev: 71f99af0d05656a4546e691f6b6e876776c22b13) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
798 B
Diff
31 lines
798 B
Diff
From 56e3c9581e2c9b7435d5fcbd74b47c7ccf6b3891 Mon Sep 17 00:00:00 2001
|
|
From: Andrej Valek <andrej.valek@siemens.com>
|
|
Date: Thu, 18 Apr 2019 10:47:11 +0200
|
|
Subject: fs-util.h: add missing sys/stat include
|
|
|
|
fix error:
|
|
| error: passing argument 5 of 'chase_symlinks_and_stat' from incompatible pointer type [-Werror=incompatible-pointer-types]
|
|
|
|
Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
|
|
|
|
Upstream-Status: Accepted
|
|
---
|
|
src/basic/fs-util.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/basic/fs-util.h b/src/basic/fs-util.h
|
|
index b9651205e6..c153bc4448 100644
|
|
--- a/src/basic/fs-util.h
|
|
+++ b/src/basic/fs-util.h
|
|
@@ -7,6 +7,7 @@
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <sys/inotify.h>
|
|
+#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
--
|
|
2.20.1
|
|
|