From 63f1fde85b955a7662872dfa814b0059e4def93f Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Tue, 25 Dec 2018 12:19:42 +0100 Subject: [PATCH] Fix path for errno.h Fix warnings when built with musl libc by using the correct path for errno.h as defined in POSIX. Fixes the following warning: In file included from /home/ncopa/src/exiv2/src/http.cpp:74: /usr/include/sys/errno.h:1:2: warning: #warning redirecting incorrect #include to [-Wcpp] #warning redirecting incorrect #include to ^~~~~~~ --- src/http.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http.cpp b/src/http.cpp index 9c4b7294..595d68e3 100644 --- a/src/http.cpp +++ b/src/http.cpp @@ -71,7 +71,7 @@ #include #include -#include +#include #include #include #include