From 60c69a2191bdb347a379a272b2a878090491ad3a Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Sat, 7 Jan 2006 08:51:19 +0000 Subject: [PATCH] fix --- include/fuse.h | 2 +- include/fuse_opt.h | 2 +- lib/fuse_i.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/fuse.h b/include/fuse.h index d49c3e0..a94c61a 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -507,7 +507,7 @@ int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op, typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *); /** This is the part of fuse_main() before the event loop */ -struct fuse *fuse_setup(int argc, char *argv[], +struct fuse *fuse_setup(int argc, char *argv[], const struct fuse_operations *op, size_t op_size, char **mountpoint, int *multithreaded, int *fd); diff --git a/include/fuse_opt.h b/include/fuse_opt.h index ceec864..2ef5d56 100644 --- a/include/fuse_opt.h +++ b/include/fuse_opt.h @@ -164,7 +164,7 @@ typedef int (*fuse_opt_proc_t)(void *data, const char *arg, int key, * Option parsing function * * If 'args' was returned from a previous call to fuse_opt_parse() or - * it was constructed from + * it was constructed from * * A NULL 'args' is equivalent to an empty argument vector * diff --git a/lib/fuse_i.h b/lib/fuse_i.h index ea1eefe..efbabf7 100644 --- a/lib/fuse_i.h +++ b/lib/fuse_i.h @@ -19,6 +19,6 @@ struct fuse_cmd { struct fuse_session *fuse_get_session(struct fuse *f); -struct fuse *fuse_new_common(int fd, struct fuse_args *args, +struct fuse *fuse_new_common(int fd, struct fuse_args *args, const struct fuse_operations *op, size_t op_size, int compat); -- 2.30.2