aboutsummaryrefslogtreecommitdiffstats
path: root/tests/asschk.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/asschk.c')
-rw-r--r--tests/asschk.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/asschk.c b/tests/asschk.c
index c77fd7c23..e278069bf 100644
--- a/tests/asschk.c
+++ b/tests/asschk.c
@@ -656,13 +656,13 @@ expand_line (char *buffer)
static int
eval_boolean (const char *cond)
{
- int true = 1;
+ int tru = 1;
for ( ; *cond == '!'; cond++)
- true = !true;
+ tru = !tru;
if (!*cond || (*cond == '0' && !cond[1]))
- return !true;
- return true;
+ return !tru;
+ return tru;
}