diff options
Diffstat (limited to 'lib/fuse_lowlevel.c')
-rw-r--r-- | lib/fuse_lowlevel.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index b35b16a..176b718 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -925,10 +925,13 @@ static struct fuse_opt fuse_ll_opts[] = { FUSE_OPT_END }; -static int fuse_ll_opt_proc(void *data, const char *arg, int key) +static int fuse_ll_opt_proc(void *data, const char *arg, int key, + int *argcp, char **argvp[]) { (void) data; (void) key; + (void) argcp; + (void) argvp; fprintf(stderr, "fuse: unknown option `%s'\n", arg); return -1; } |