aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2019-05-12 11:00:15 +0100
committerNikolaus Rath <Nikolaus@rath.org>2019-05-12 11:00:15 +0100
commit7a5e1a9a9a61416c759ce02a48e600814fd13711 (patch)
treefb6e968084f330b53fe35d5989a9404d6b1bbbbb
parent055f272517306e6877a126e414aa60191b483eba (diff)
downloadlibfuse-7a5e1a9a9a61416c759ce02a48e600814fd13711.tar.gz
Fix includes of non-system headers.
Fixes: #415.
-rw-r--r--example/passthrough_hp.cc4
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>