aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/fuse.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 78cd877..6a3ed3a 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -116,10 +116,11 @@ extern "C" {
* fuse_new()
*
* @param mountpoint the mount point path
- * @param mount arguments (passed to the fusermount program)
+ * @param args array of arguments to be passed to fusermount (NULL
+ * terminated). Can be NULL if no arguments are needed.
* @return the control file descriptor on success, -1 on failure
*/
-int fuse_mount(const char *mountpoint, const char *mount_args);
+int fuse_mount(const char *mountpoint, const char *args[]);
/**
* Create a new FUSE filesystem.