summaryrefslogtreecommitdiffstats
path: root/bin/sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sh')
-rw-r--r--bin/sh/mksyntax.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/sh/mksyntax.c b/bin/sh/mksyntax.c
index 6966ae0..e4ec28a 100644
--- a/bin/sh/mksyntax.c
+++ b/bin/sh/mksyntax.c
@@ -139,10 +139,7 @@ main(int argc __unused, char **argv __unused)
/* Determine the characteristics of chars. */
c = -1;
- if (c < 0)
- sign = 1;
- else
- sign = 0;
+ sign = (c > 0) ? 0 : 1;
for (nbits = 1 ; ; nbits++) {
d = (1 << nbits) - 1;
if (d == c)
OpenPOWER on IntegriCloud