aboutsummaryrefslogtreecommitdiff
path: root/lib/helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/helper.c')
-rw-r--r--lib/helper.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/helper.c b/lib/helper.c
index d61aaec..1e46476 100644
--- a/lib/helper.c
+++ b/lib/helper.c
@@ -157,12 +157,11 @@ static const struct fuse_opt fuse_helper_opts[] = {
};
static int fuse_helper_opt_proc(void *data, const char *arg, int key,
- int *argcp, char **argvp[])
+ struct fuse_args *outargs)
{
struct helper_opts *hopts = data;
- (void) argcp;
- (void) argvp;
+ (void) outargs;
switch (key) {
case KEY_HELP:
@@ -207,7 +206,7 @@ static int fuse_parse_cmdline(int argc, const char *argv[],
hopts->progname = argv[0];
res = fuse_opt_parse(argc, (char **) argv, hopts, fuse_helper_opts,
- fuse_helper_opt_proc, NULL, NULL);
+ fuse_helper_opt_proc, NULL);
if (res == -1)
return -1;