Displaying 1 result from an estimated 1 matches for "2bd6787".
Did you mean:
26787
2012 Jul 21
1
[PATCH] fuse:remove the unused macro when fuse is not available
Just make gcc happy when fuse is not available.
Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com>
---
src/fuse.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/fuse.c b/src/fuse.c
index 2bd6787..349a5b9 100644
--- a/src/fuse.c
+++ b/src/fuse.c
@@ -25,6 +25,7 @@
#include <sys/types.h>
#include <sys/wait.h>
+#if HAVE_FUSE
/* See <attr/xattr.h> */
#ifndef ENOATTR
#define ENOATTR ENODATA
@@ -32,7 +33,6 @@
#define FUSE_USE_VERSION 26
-#if HAVE_FUSE
#include <f...