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:
503e32d
)
fuse_new_30(): call fuse_new_31(), not fuse_new()
author
Nikolaus Rath
<Nikolaus@rath.org>
Thu, 13 Jul 2017 11:22:12 +0000
(13:22 +0200)
committer
Nikolaus Rath
<Nikolaus@rath.org>
Thu, 13 Jul 2017 11:22:12 +0000
(13:22 +0200)
I believe this function call is resolved by the compiler, not
the linker, so this seems safer.
Thanks to Chris Clayton for spotting this.
lib/fuse.c
patch
|
blob
|
history
diff --git
a/lib/fuse.c
b/lib/fuse.c
index 5160eb11a89df0fe0cb6d7e7f4ca1e499ca810a9..08dab22dfd297abf89a76be23ea0feb4a0e2e8a3 100644
(file)
--- a/
lib/fuse.c
+++ b/
lib/fuse.c
@@
-4647,7
+4647,7
@@
struct fuse *fuse_new_30(struct fuse_args *args,
fuse_lib_help(args);
return NULL;
} else
- return fuse_new(args, op, op_size, user_data);
+ return fuse_new
_31
(args, op, op_size, user_data);
}
/* Explicit prototype to prevent compiler warnings