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:
f6691d0
)
Don't omit second operand to `?` operator
author
Michael Forney
<mforney@mforney.org>
Tue, 4 Jun 2019 19:26:38 +0000
(12:26 -0700)
committer
Nikolaus Rath
<Nikolaus@rath.org>
Thu, 6 Jun 2019 12:31:41 +0000
(13:31 +0100)
This is a GNU C extension.
lib/fuse.c
patch
|
blob
|
history
diff --git
a/lib/fuse.c
b/lib/fuse.c
index 5c3b55b84d35877a2eaa2cc13b20e1889968ee3f..5f8af4d11c3f08be618db0858f4f5d00f1a3314f 100755
(executable)
--- a/
lib/fuse.c
+++ b/
lib/fuse.c
@@
-4261,7
+4261,7
@@
static void fuse_lib_ioctl(fuse_req_t req, fuse_ino_t ino, unsigned int cmd,
fuse_prepare_interrupt(f, req, &d);
err = fuse_fs_ioctl(f->fs, path, cmd, arg, &fi, flags,
- out_buf ?: (void *)in_buf);
+ out_buf ?
out_buf
: (void *)in_buf);
fuse_finish_interrupt(f, req, &d);
free_path(f, ino, path);