aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2002-05-29 07:06:09 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2002-05-29 07:06:09 +0000
commitf4736e7edbf5b5d8ad7fe416ffb59c571be6989b (patch)
tree7b0f2821d44a59340d2ae09245cc7c16225008a7
parent7603e1c0164b3b9fce9d243c60e5063312202347 (diff)
downloadlibfuse-f4736e7edbf5b5d8ad7fe416ffb59c571be6989b.tar.gz
fixes
-rw-r--r--include/fuse.h3
-rw-r--r--kernel/util.c1
2 files changed, 2 insertions, 2 deletions
diff --git a/include/fuse.h b/include/fuse.h
index b9e7962..27b08de 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -129,7 +129,6 @@ struct fuse *fuse_new(int fd, int flags, const struct fuse_operations *op);
* operations are called.
*
* @param f the FUSE handle
- * @prarm op the file system operations
*/
void fuse_loop(struct fuse *f);
@@ -188,7 +187,7 @@ struct fuse_context *fuse_get_context(struct fuse *f);
*
* @param argc the argument counter passed to the main() function
* @param argv the argument vector passed to the main() function
- * @prarm op the file system operation
+ * @param op the file system operation
*/
void fuse_main(int argc, char *argv[], const struct fuse_operations *op);
diff --git a/kernel/util.c b/kernel/util.c
index e2679a0..ecf23ce 100644
--- a/kernel/util.c
+++ b/kernel/util.c
@@ -61,4 +61,5 @@ void cleanup_module(void)
* Local Variables:
* indent-tabs-mode: t
* c-basic-offset: 8
+ * End:
*/