aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-03-28 14:14:10 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-03-29 13:18:17 -0700
commit01c663699ac276d3ec676972914cf3a375907995 (patch)
tree9665a1e1c320fbb6676aa38b60d7a44c2616bcd6 /lib/fuse.c
parent931736a8b42a6e15a05e3a869a7ed5214750cbd9 (diff)
Whitespace cleanup.
Applied (whitespace-cleanup) to each file. Having whitespace changes in the VCS is ugly, but it ensures that in the future committers can run this function to *avoid* commiting any whitespace.
Diffstat (limited to 'lib/fuse.c')
-rw-r--r--lib/fuse.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/fuse.c b/lib/fuse.c
index 781efb2..a879ffa 100644
--- a/lib/fuse.c
+++ b/lib/fuse.c
@@ -118,11 +118,11 @@ struct node_table {
};
#define container_of(ptr, type, member) ({ \
- const typeof( ((type *)0)->member ) *__mptr = (ptr); \
- (type *)( (char *)__mptr - offsetof(type,member) );})
+ const typeof( ((type *)0)->member ) *__mptr = (ptr); \
+ (type *)( (char *)__mptr - offsetof(type,member) );})
#define list_entry(ptr, type, member) \
- container_of(ptr, type, member)
+ container_of(ptr, type, member)
struct list_head {
struct list_head *next;
@@ -4831,4 +4831,3 @@ void fuse_destroy(struct fuse *f)
free(f);
fuse_delete_context_key();
}
-