diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-03-17 15:05:40 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2006-03-17 15:05:40 +0000 |
commit | 6f385414b27e929bd14435ea8342cde4bae0ef8d (patch) | |
tree | c5a557fa053ebd9d96331f9d620d96a80a1282bd /example/hello.c | |
parent | 9db31dc1cff5ae2e854649f039f319d45eb58cf3 (diff) | |
download | libfuse-6f385414b27e929bd14435ea8342cde4bae0ef8d.tar.gz |
fix
Diffstat (limited to 'example/hello.c')
-rw-r--r-- | example/hello.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/hello.c b/example/hello.c index 8ab7181..f717c34 100644 --- a/example/hello.c +++ b/example/hello.c @@ -90,5 +90,5 @@ static struct fuse_operations hello_oper = { int main(int argc, char *argv[]) { - return fuse_main(argc, argv, &hello_oper); + return fuse_main(argc, argv, &hello_oper, NULL); } |