aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse.h
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2016-04-27 08:39:31 -0700
committerNikolaus Rath <Nikolaus@rath.org>2016-04-27 08:39:31 -0700
commit4575e40bf85f80af9bd0816dca393d1112a9c7c2 (patch)
treee354dc9fc263b2efd918dd133e3b6d8ad313ede4 /include/fuse.h
parent2aa1f6b1381611a3f73c7a1db61a629aa2e28324 (diff)
parent482a49c25682bdc537f1a28ca18926ee278658f3 (diff)
downloadlibfuse-4575e40bf85f80af9bd0816dca393d1112a9c7c2.tar.gz
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/fuse.h b/include/fuse.h
index e16104c..7f5daa8 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -6,8 +6,8 @@
See the file COPYING.LIB.
*/
-#ifndef _FUSE_H_
-#define _FUSE_H_
+#ifndef FUSE_H_
+#define FUSE_H_
/** @file
*
@@ -222,7 +222,7 @@ struct fuse_operations {
/** Get file system statistics
*
- * The 'f_frsize', 'f_favail', 'f_fsid' and 'f_flag' fields are ignored
+ * The 'f_favail', 'f_fsid' and 'f_flag' fields are ignored
*
* Replaced 'struct statfs' parameter with 'struct statvfs' in
* version 2.5
@@ -705,7 +705,7 @@ void fuse_exit(struct fuse *f);
* If you are using multiple threads, you can enjoy all the parallel execution
* and interactive response benefits of threads, and you get to enjoy all the
* benefits of race conditions and locking bugs, too. Ensure that any code used
- * in the callback funtion of fuse_operations is also thread-safe.
+ * in the callback function of fuse_operations is also thread-safe.
*
* @param f the FUSE handle
* @return 0 if no error occurred, -1 otherwise
@@ -936,4 +936,4 @@ struct fuse_session *fuse_get_session(struct fuse *f);
}
#endif
-#endif /* _FUSE_H_ */
+#endif /* FUSE_H_ */