Don't omit second operand to `?` operator
authorMichael Forney <mforney@mforney.org>
Tue, 4 Jun 2019 19:26:38 +0000 (12:26 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 6 Jun 2019 12:31:41 +0000 (13:31 +0100)
This is a GNU C extension.

lib/fuse.c

index 5c3b55b84d35877a2eaa2cc13b20e1889968ee3f..5f8af4d11c3f08be618db0858f4f5d00f1a3314f 100755 (executable)
@@ -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);