diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-28 20:41:13 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-28 20:41:13 +0300 |
commit | bd2fc195fd0e10d989b14c01e57baace5a344ad1 (patch) | |
tree | 10fd13ea5a95b3653a5da83f1fbc603829d04e6c /awkgram.c | |
parent | 34c8c8d06b766703fdc86136a0656e4baeeb7b69 (diff) | |
download | egawk-bd2fc195fd0e10d989b14c01e57baace5a344ad1.tar.gz egawk-bd2fc195fd0e10d989b14c01e57baace5a344ad1.tar.bz2 egawk-bd2fc195fd0e10d989b14c01e57baace5a344ad1.zip |
Fix a warning on tcc.
Diffstat (limited to 'awkgram.c')
-rw-r--r-- | awkgram.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3059,7 +3059,7 @@ regular_loop: if (yyvsp[-1] != NULL) { NODE *n = yyvsp[-1]->nexti->nexti->memory; - if ((n->flags & (STRING|STRCUR)) != 0 || ! iszero(n)) + if ((n->flags & (STRING|STRCUR)) != 0 || ! is_zero(n)) goto regular_print; bcfree(yyvsp[-1]->lasti); /* Op_field_spec */ @@ -4901,7 +4901,7 @@ negate_num(NODE *n) #ifdef HAVE_MPFR if (is_mpg_integer(n)) { - if (! iszero(n)) { + if (! is_zero(n)) { mpz_neg(n->mpg_i, n->mpg_i); return; } |