From f164e9b8ca319dd1279384ff495b5fa91e778d9e Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Sun, 2 Oct 2016 10:44:16 -0700 Subject: Renamed fuse_lowlevel_new() to fuse_session_new(). --- example/hello_ll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example/hello_ll.c') diff --git a/example/hello_ll.c b/example/hello_ll.c index 3c87bc6..528b216 100755 --- a/example/hello_ll.c +++ b/example/hello_ll.c @@ -194,7 +194,7 @@ int main(int argc, char *argv[]) (ch = fuse_session_mount(mountpoint, &args)) != NULL) { struct fuse_session *se; - se = fuse_lowlevel_new(&args, &hello_ll_oper, + se = fuse_session_new(&args, &hello_ll_oper, sizeof(hello_ll_oper), NULL); if (se != NULL) { if (fuse_set_signal_handlers(se) != -1) { -- cgit v1.2.3