summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch')
-rw-r--r--meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch b/meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch
deleted file mode 100644
index ada404b053..0000000000
--- a/meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From 56e3c9581e2c9b7435d5fcbd74b47c7ccf6b3891 Mon Sep 17 00:00:00 2001
2From: Andrej Valek <andrej.valek@siemens.com>
3Date: Thu, 18 Apr 2019 10:47:11 +0200
4Subject: fs-util.h: add missing sys/stat include
5
6fix error:
7| error: passing argument 5 of 'chase_symlinks_and_stat' from incompatible pointer type [-Werror=incompatible-pointer-types]
8
9Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
10
11Upstream-Status: Accepted
12---
13 src/basic/fs-util.h | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/src/basic/fs-util.h b/src/basic/fs-util.h
17index b9651205e6..c153bc4448 100644
18--- a/src/basic/fs-util.h
19+++ b/src/basic/fs-util.h
20@@ -7,6 +7,7 @@
21 #include <stdbool.h>
22 #include <stdint.h>
23 #include <sys/inotify.h>
24+#include <sys/stat.h>
25 #include <sys/types.h>
26 #include <unistd.h>
27
28--
292.20.1
30