aboutsummaryrefslogtreecommitdiff
path: root/example/hello.c
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2003-12-12 14:06:41 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2003-12-12 14:06:41 +0000
commit5e43f2c00c1ce3a9ee3ed9c2b5a9b32dabbb6e60 (patch)
treef2b700316c0ec296d18aee045fe098880602664b /example/hello.c
parente4cf733e1c0a1a959f2f3c4f1951ad35da58011e (diff)
added fsync operation
Diffstat (limited to 'example/hello.c')
-rw-r--r--example/hello.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/example/hello.c b/example/hello.c
index cd8fb5d..6b461d0 100644
--- a/example/hello.c
+++ b/example/hello.c
@@ -86,7 +86,8 @@ static struct fuse_operations hello_oper = {
read: hello_read,
write: NULL,
statfs: NULL,
- release: NULL
+ release: NULL,
+ fsync: NULL
};
int main(int argc, char *argv[])