From 29ec84e8d21f85c85be3104e29274d5328b7868e Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Fri, 19 Sep 2014 16:10:11 +0200 Subject: [PATCH] obexd: Fix compilation error with musl CC obexd/plugins/obexd-filesystem.o In file included from obexd/plugins/filesystem.c:40:0: /usr/include/wait.h:1:2: error: #warning redirecting incorrect #include to [-Werror=cpp] #warning redirecting incorrect #include to ^ cc1: all warnings being treated as errors Makefile:6447: recipe for target 'obexd/plugins/obexd-filesystem.o' failed make[1]: *** [obexd/plugins/obexd-filesystem.o] Error 1 --- obexd/plugins/filesystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obexd/plugins/filesystem.c b/obexd/plugins/filesystem.c index 1132a34c3..98281f2d4 100644 --- a/obexd/plugins/filesystem.c +++ b/obexd/plugins/filesystem.c @@ -37,7 +37,7 @@ #include #include #include -#include +#include #include #include -- 2.47.3