projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c49c518
)
fuse_new: Fix non symboled call to _fuse_new_317
author
Bernd Schubert
<bernd@bsbernd.com>
Mon, 10 Feb 2025 00:52:08 +0000
(
01:52
+0100)
committer
Bernd Schubert
<bernd@bsbernd.com>
Mon, 10 Feb 2025 15:56:45 +0000
(16:56 +0100)
Acidentally the wrong non-existing function was ccalled.
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
include/fuse.h
patch
|
blob
|
history
diff --git
a/include/fuse.h
b/include/fuse.h
index ae8d80ee42681120d1ab3c7bc6ebb4d03d391bd7..ab0c04a805e9dc726401cfc3606c648dc9fb056b 100644
(file)
--- a/
include/fuse.h
+++ b/
include/fuse.h
@@
-1094,7
+1094,7
@@
fuse_new(struct fuse_args *args,
.padding = 0
};
- return _fuse_new(args, op, op_size, &version, user_data);
+ return _fuse_new
_317
(args, op, op_size, &version, user_data);
}
#endif /* LIBFUSE_BUILT_WITH_VERSIONED_SYMBOLS */
#endif