mirror of
https://github.com/sheumann/hush.git
synced 2025-01-11 08:29:54 +00:00
ash: placate gcc: "warning: ! is only applied to the left hand side of =="
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
ae4bd34e6b
commit
bc1a00843f
@ -8590,7 +8590,7 @@ evaltree(union node *n, int flags)
|
||||
n->nbinary.ch1,
|
||||
(flags | ((is_or >> 1) - 1)) & EV_TESTED
|
||||
);
|
||||
if (!status == is_or || evalskip)
|
||||
if ((!status) == is_or || evalskip)
|
||||
break;
|
||||
n = n->nbinary.ch2;
|
||||
evaln:
|
||||
|
Loading…
x
Reference in New Issue
Block a user