diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2019-05-12 11:00:15 +0100 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2019-05-12 11:00:15 +0100 |
commit | 7a5e1a9a9a61416c759ce02a48e600814fd13711 (patch) | |
tree | fb6e968084f330b53fe35d5989a9404d6b1bbbbb | |
parent | 055f272517306e6877a126e414aa60191b483eba (diff) | |
download | libfuse-7a5e1a9a9a61416c759ce02a48e600814fd13711.tar.gz |
Fix includes of non-system headers.
Fixes: #415.
-rw-r--r-- | example/passthrough_hp.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc index dba8751..974551e 100644 --- a/example/passthrough_hp.cc +++ b/example/passthrough_hp.cc @@ -46,7 +46,7 @@ #define FUSE_USE_VERSION 35 #ifdef HAVE_CONFIG_H -#include <config.h> +#include "config.h" #endif #ifndef _GNU_SOURCE @@ -73,7 +73,7 @@ #include <cstdio> #include <cstdlib> #include <list> -#include <cxxopts.hpp> +#include "cxxopts.hpp" #include <mutex> #include <fstream> #include <thread> |