From ef10bd7ace38b7d4964c1b74005cf9ae2848b706 Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Sun, 27 Jan 2019 20:32:09 +0100 Subject: [PATCH] renamed fuse.h wrapper, since it confuses vscode --- src/app/main.c | 2 +- src/wsfs/{fuse.h => fuse_wrapper.h} | 0 src/wsfs/operations.h | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/wsfs/{fuse.h => fuse_wrapper.h} (100%) diff --git a/src/app/main.c b/src/app/main.c index a1b033e..a50bcbf 100644 --- a/src/app/main.c +++ b/src/app/main.c @@ -3,7 +3,7 @@ #include #include -#include "wsfs/fuse.h" +#include "wsfs/fuse_wrapper.h" #include "wsfs/operations.h" #include "wsfs/server.h" diff --git a/src/wsfs/fuse.h b/src/wsfs/fuse_wrapper.h similarity index 100% rename from src/wsfs/fuse.h rename to src/wsfs/fuse_wrapper.h diff --git a/src/wsfs/operations.h b/src/wsfs/operations.h index 58d94b1..53242ff 100644 --- a/src/wsfs/operations.h +++ b/src/wsfs/operations.h @@ -1,7 +1,7 @@ #ifndef _WSFS_OPERATIONS #define _WSFS_OPERATIONS -#include "wsfs/fuse.h" +#include "wsfs/fuse_wrapper.h" extern void wsfs_operations_init( struct fuse_operations * operations);