diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-02-15 14:25:17 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2006-02-15 14:25:17 +0000 |
commit | d65cdfe63c14c1765dc0bd5ab818a2e41a1f2ba3 (patch) | |
tree | 28721bc09fc7dba1139232ae8209474bcca53f57 /lib/fuse.c | |
parent | 390ae3111a5804a02db0a9e7803ee5dd6f0fd1c0 (diff) | |
download | libfuse-d65cdfe63c14c1765dc0bd5ab818a2e41a1f2ba3.tar.gz |
fix
Diffstat (limited to 'lib/fuse.c')
-rw-r--r-- | lib/fuse.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2014,7 +2014,8 @@ struct fuse *fuse_new_common(int fd, struct fuse_args *args, goto out_free; } - f->se = fuse_lowlevel_new(args, &fuse_path_ops, sizeof(fuse_path_ops), f); + f->se = fuse_lowlevel_new_common(args, &fuse_path_ops, + sizeof(fuse_path_ops), f); if (f->se == NULL) goto out_free; |