Displaying 1 result from an estimated 1 matches for "dd144948a9fa".
2020 Jun 18
1
[PATCH] fix warnings with GCC 10
...Signed-off-by: Christophe Leroy <christophe.leroy at csgroup.eu>
---
usr/dash/eval.c | 2 +-
usr/klibc/zlib/infback.c | 2 +-
usr/klibc/zlib/inflate.c | 20 ++++++++++++++++++++
3 files changed, 22 insertions(+), 2 deletions(-)
diff --git a/usr/dash/eval.c b/usr/dash/eval.c
index dd144948a9fa..6b2b01e19a47 100644
--- a/usr/dash/eval.c
+++ b/usr/dash/eval.c
@@ -274,7 +274,7 @@ checkexit:
n->nbinary.ch1,
(flags | ((isor >> 1) - 1)) & EV_TESTED
);
- if (!exitstatus == isor)
+ if ((!exitstatus) == isor)
break;
if (!evalskip) {
n = n->nbinary.ch2;
diff...