aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2005-07-15 09:59:59 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2005-07-15 09:59:59 +0000
commitbd10a7b16f10c1a5f61a4531c8631048e00fa230 (patch)
tree3662bd63e8b6b4946a757f73ac65c47a32b63beb /example
parent163581a2d291cf8b7d93e9e58756a43c8209af1c (diff)
added lowlevel API
Diffstat (limited to 'example')
-rw-r--r--example/hello_ll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/hello_ll.c b/example/hello_ll.c
index 2739e3a..2589836 100644
--- a/example/hello_ll.c
+++ b/example/hello_ll.c
@@ -157,7 +157,7 @@ int main(int argc, char *argv[])
mountpoint = argv[1];
fd = fuse_mount(mountpoint, NULL);
if (fd != -1) {
- f = fuse_ll_new(fd, "debug", &hello_ll_oper, sizeof(hello_ll_oper));
+ f = fuse_ll_new(fd, "debug", &hello_ll_oper, sizeof(hello_ll_oper), NULL);
if (f != NULL) {
err = fuse_ll_loop(f);
fuse_ll_destroy(f);