diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2019-03-09 10:30:41 +0000 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2019-03-09 10:31:18 +0000 |
commit | 1c70c870fe688e3bcd3b3dc8e8951a79fcaef435 (patch) | |
tree | 0bde0b69842b58796d66c164ea9e1c559b8a4958 /util/fusermount.c | |
parent | 078c623703123f9c449756c798d55ba859310abc (diff) | |
download | libfuse-1c70c870fe688e3bcd3b3dc8e8951a79fcaef435.tar.gz |
Correctly include config.h ("" vs <>)
This isn't a system header.
Fixes: #349
Diffstat (limited to 'util/fusermount.c')
-rw-r--r-- | util/fusermount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/fusermount.c b/util/fusermount.c index 3f13e42..ebc0689 100644 --- a/util/fusermount.c +++ b/util/fusermount.c @@ -8,9 +8,9 @@ /* This program does the mounting and unmounting of FUSE filesystems */ #define _GNU_SOURCE /* for clone */ -#include <config.h> - +#include "config.h" #include "mount_util.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> |