aboutsummaryrefslogtreecommitdiff
path: root/include/fuse.h
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-11-16 12:41:41 -0800
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-11-16 12:41:41 -0800
commitc22da7f3a89353ee2b68b6ae1b46af430ba9a691 (patch)
treeb392de57bac8818d0218824fd87c411a8ae8eddb /include/fuse.h
parent2e6cd2d4255e2948cecb54d72d21b018752e92cc (diff)
Add support for more detailed error codes from main loop
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 682f731..e99f04d 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -828,7 +828,7 @@ void fuse_destroy(struct fuse *f);
* operations are called.
*
* @param f the FUSE handle
- * @return 0 if no error occurred, -1 otherwise
+ * @return 0 if no error occurred, -errno otherwise
*
* See also: fuse_loop()
*/
@@ -871,7 +871,7 @@ void fuse_exit(struct fuse *f);
* @param f the FUSE handle
* @param clone_fd whether to use separate device fds for each thread
* (may increase performance)
- * @return 0 if no error occurred, -1 otherwise
+ * @return 0 if no error occurred, -errno otherwise
*
* See also: fuse_loop()
*/