diff options
author | Mark Glines <mark@glines.org> | 2003-07-18 13:59:44 +0000 |
---|---|---|
committer | Mark Glines <mark@glines.org> | 2003-07-18 13:59:44 +0000 |
commit | 868f16fa2462d744127803dcb57fa8cfcbe1584d (patch) | |
tree | 7c0663a148956c7e2bce0092e32e7f9866d6a0d3 /perl/Fuse.xs | |
parent | 848384735ed547f710e865eec993ee3815109831 (diff) | |
download | libfuse-868f16fa2462d744127803dcb57fa8cfcbe1584d.tar.gz |
seems the arguments for fuse_mount() have changed slightly.
Diffstat (limited to 'perl/Fuse.xs')
-rw-r--r-- | perl/Fuse.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Fuse.xs b/perl/Fuse.xs index 69d49f0..0a460b9 100644 --- a/perl/Fuse.xs +++ b/perl/Fuse.xs @@ -566,7 +566,7 @@ perl_fuse_main(...) } } /* FIXME: need to pass fusermount arguments */ - fd = fuse_mount(mountpoint,""); + fd = fuse_mount(mountpoint,NULL); if(fd < 0) croak("could not mount fuse filesystem!"); fuse_loop(fuse_new(fd,debug ? FUSE_DEBUG : 0,&fops)); |