From caa093140a5540442f40f65fbf8cf596bb6066a9 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Wed, 14 Dec 2005 23:25:00 +0000 Subject: fix --- lib/fuse_lowlevel.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/fuse_lowlevel.c') 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; } -- cgit v1.2.3