diff options
Diffstat (limited to 'example')
-rw-r--r-- | example/fusexmp.c | 1 | ||||
-rw-r--r-- | example/hello.c | 1 | ||||
-rw-r--r-- | example/null.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/example/fusexmp.c b/example/fusexmp.c index 8b48af6..e783423 100644 --- a/example/fusexmp.c +++ b/example/fusexmp.c @@ -267,6 +267,7 @@ static struct fuse_operations xmp_oper = { read: xmp_read, write: xmp_write, statfs: xmp_statfs, + release: NULL }; int main(int argc, char *argv[]) diff --git a/example/hello.c b/example/hello.c index be8930e..cd8fb5d 100644 --- a/example/hello.c +++ b/example/hello.c @@ -86,6 +86,7 @@ static struct fuse_operations hello_oper = { read: hello_read, write: NULL, statfs: NULL, + release: NULL }; int main(int argc, char *argv[]) diff --git a/example/null.c b/example/null.c index 6b2c1b6..b712b5c 100644 --- a/example/null.c +++ b/example/null.c @@ -89,6 +89,7 @@ static struct fuse_operations null_oper = { read: null_read, write: null_write, statfs: null_statfs, + release: NULL }; int main(int argc, char *argv[]) |