aboutsummaryrefslogtreecommitdiffstats
path: root/builtin.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-02-27 06:03:55 +0200
committerArnold D. Robbins <arnold@skeeve.com>2014-02-27 06:03:55 +0200
commit8924decac2ae2a37f30c6a688e671d2b32d5ff89 (patch)
treee59f806c0a72686f412aa200a4ea476b33579303 /builtin.c
parent7a05fe38d3e7556eb94f694173b745522878e919 (diff)
parentd80438ac6fef9137ab0450f02cd507d422aa9c32 (diff)
downloadegawk-8924decac2ae2a37f30c6a688e671d2b32d5ff89.tar.gz
egawk-8924decac2ae2a37f30c6a688e671d2b32d5ff89.tar.bz2
egawk-8924decac2ae2a37f30c6a688e671d2b32d5ff89.zip
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin.c b/builtin.c
index b3e2962b..3571fae3 100644
--- a/builtin.c
+++ b/builtin.c
@@ -719,7 +719,7 @@ format_tree(
mpz_ptr zi;
mpfr_ptr mf;
#endif
- enum { MP_INT_WITH_PREC = 1, MP_INT_WITHOUT_PREC, MP_FLOAT } fmt_type;
+ enum { MP_NONE = 0, MP_INT_WITH_PREC = 1, MP_INT_WITHOUT_PREC, MP_FLOAT } fmt_type;
static const char sp[] = " ";
static const char zero_string[] = "0";
@@ -817,7 +817,7 @@ format_tree(
mf = NULL;
zi = NULL;
#endif
- fmt_type = 0;
+ fmt_type = MP_NONE;
lj = alt = big_flag = bigbig_flag = small_flag = false;
fill = sp;