aboutsummaryrefslogtreecommitdiff
path: root/example/hello.c
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <mszeredi@suse.cz>2013-07-17 15:58:53 +0200
committerGravatar Miklos Szeredi <mszeredi@suse.cz>2013-07-17 15:58:53 +0200
commit7dfb43254cc64044e75a5da4bbf02a86d110aee3 (patch)
treeffbca3caeae8b421efbdd27dcd01fa573ff381ed /example/hello.c
parent95e71dd19ebf1ddf7e5285d21ba9001d44e30f7a (diff)
Documentation fixes
Diffstat (limited to 'example/hello.c')
-rwxr-xr-xexample/hello.c2
1 files changed, 0 insertions, 2 deletions
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);