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/fuse_opt.c | |
parent | 6470957cce815f8c707882093c8f76165f69cc55 (diff) | |
download | libfuse-caa093140a5540442f40f65fbf8cf596bb6066a9.tar.gz |
fix
Diffstat (limited to 'lib/fuse_opt.c')
-rw-r--r-- | lib/fuse_opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuse_opt.c b/lib/fuse_opt.c index 4eb4eed..a0ed4ac 100644 --- a/lib/fuse_opt.c +++ b/lib/fuse_opt.c @@ -114,7 +114,7 @@ static int call_proc(struct fuse_opt_context *ctx, const char *arg, int key, int iso) { if (ctx->proc) { - int res = ctx->proc(ctx->data, arg, key); + int res = ctx->proc(ctx->data, arg, key, &ctx->argcout, &ctx->argvout); if (res == -1 || !res) return res; } |