aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog.rst
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-07-06 12:40:16 +0200
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-07-06 12:40:16 +0200
commit746179824d45bbeb5721756e346c3f2335407fa5 (patch)
treefd5fb30f4f15f5af1653fe91332115c56ef8450d /ChangeLog.rst
parentb400c4f95b9fc0e62d6020e2344174943a25e492 (diff)
Fixed bug in code example in ChangeLog.
Diffstat (limited to 'ChangeLog.rst')
-rw-r--r--ChangeLog.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 38a1cf6..d302cd3 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -269,14 +269,14 @@ libfuse 3.0.0 (2016-12-08)
fuse = fuse_new(&args, op, op_size, user_data);
se = fuse_get_session(fuse);
fuse_set_signal_handlers(se);
- fuse_mount(se, mountpoint);
+ fuse_mount(fuse, mountpoint);
fuse_daemonize(fg);
if (mt)
fuse_loop_mt(fuse);
else
fuse_loop(fuse);
fuse_remove_signal_handlers(se);
- fuse_unmount(se);
+ fuse_unmount(fuse);
fuse_destroy(fuse);
File systems that use `fuse_main` are not affected by this change.