aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2004-10-21 09:35:10 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2004-10-21 09:35:10 +0000
commit5dc8a80c655cea3717996c8f419fc73be133b647 (patch)
treee2d4675374ac50783107df0066b6f1c5fc56e860 /example
parenta2c5e56bc066ba01b5f17e528b92c4d878226b25 (diff)
cleanups + step minor version
Diffstat (limited to 'example')
-rw-r--r--example/fusexmp.c3
-rw-r--r--example/hello.c3
-rw-r--r--example/null.c3
3 files changed, 3 insertions, 6 deletions
diff --git a/example/fusexmp.c b/example/fusexmp.c
index a905b58..9b86a4c 100644
--- a/example/fusexmp.c
+++ b/example/fusexmp.c
@@ -337,6 +337,5 @@ static struct fuse_operations xmp_oper = {
int main(int argc, char *argv[])
{
- fuse_main(argc, argv, &xmp_oper);
- return 0;
+ return fuse_main(argc, argv, &xmp_oper);
}
diff --git a/example/hello.c b/example/hello.c
index 040c835..c7a0c1c 100644
--- a/example/hello.c
+++ b/example/hello.c
@@ -84,6 +84,5 @@ static struct fuse_operations hello_oper = {
int main(int argc, char *argv[])
{
- fuse_main(argc, argv, &hello_oper);
- return 0;
+ return fuse_main(argc, argv, &hello_oper);
}
diff --git a/example/null.c b/example/null.c
index 2eb5c8e..b854289 100644
--- a/example/null.c
+++ b/example/null.c
@@ -74,6 +74,5 @@ static struct fuse_operations null_oper = {
int main(int argc, char *argv[])
{
- fuse_main(argc, argv, &null_oper);
- return 0;
+ return fuse_main(argc, argv, &null_oper);
}