From 7dfb43254cc64044e75a5da4bbf02a86d110aee3 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Wed, 17 Jul 2013 15:58:53 +0200 Subject: Documentation fixes --- example/hello.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'example/hello.c') diff --git a/example/hello.c b/example/hello.c index 580bff2..f678931 100755 --- a/example/hello.c +++ b/example/hello.c @@ -108,7 +108,6 @@ static int hello_read(const char *path, char *buf, size_t size, off_t offset, return size; } -// fuse_operations hello_oper is redirecting function-calls to _our_ functions implemented above static struct fuse_operations hello_oper = { .getattr = hello_getattr, .readdir = hello_readdir, @@ -116,7 +115,6 @@ static struct fuse_operations hello_oper = { .read = hello_read, }; -// in the main function we call the blocking fuse_main(..) function with &hello_oper int main(int argc, char *argv[]) { return fuse_main(argc, argv, &hello_oper, NULL); -- cgit v1.2.3