diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-12-14 23:25:00 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-12-14 23:25:00 +0000 |
commit | caa093140a5540442f40f65fbf8cf596bb6066a9 (patch) | |
tree | f8a7913dbca0f00386b31c4610276ce0d506a7ba /lib/helper.c | |
parent | 6470957cce815f8c707882093c8f76165f69cc55 (diff) | |
download | libfuse-caa093140a5540442f40f65fbf8cf596bb6066a9.tar.gz |
fix
Diffstat (limited to 'lib/helper.c')
-rw-r--r-- | lib/helper.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/helper.c b/lib/helper.c index bb02a3a..d61aaec 100644 --- a/lib/helper.c +++ b/lib/helper.c @@ -156,10 +156,14 @@ static const struct fuse_opt fuse_helper_opts[] = { FUSE_OPT_END }; -static int fuse_helper_opt_proc(void *data, const char *arg, int key) +static int fuse_helper_opt_proc(void *data, const char *arg, int key, + int *argcp, char **argvp[]) { struct helper_opts *hopts = data; + (void) argcp; + (void) argvp; + switch (key) { case KEY_HELP: case KEY_HELP_NOHEADER: |