aboutsummaryrefslogtreecommitdiffstats
path: root/builtin.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2012-03-22 22:10:13 +0200
committerArnold D. Robbins <arnold@skeeve.com>2012-03-22 22:10:13 +0200
commitc7f51459f7da3e0c693f8a950726869d99e5bcf2 (patch)
tree2e4b54cc695adc5b4fdaec56e237250c030a5419 /builtin.c
parent1e495ca269aa2653bf804088ebe532b67110a3ef (diff)
parentb467a6d3d604723e0c152dceb09e998c059bfa40 (diff)
downloadegawk-c7f51459f7da3e0c693f8a950726869d99e5bcf2.tar.gz
egawk-c7f51459f7da3e0c693f8a950726869d99e5bcf2.tar.bz2
egawk-c7f51459f7da3e0c693f8a950726869d99e5bcf2.zip
Merge branch 'gawk-4.0-stable'
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin.c b/builtin.c
index 1da8a4f5..5fd439af 100644
--- a/builtin.c
+++ b/builtin.c
@@ -617,7 +617,7 @@ format_tree(
long *cur = NULL;
uintmax_t uval;
int sgn;
- int base = 0;
+ int base;
/*
* Although this is an array, the elements serve two different
* purposes. The first element is the general buffer meant
@@ -728,6 +728,7 @@ format_tree(
cur = &fw;
fw = 0;
prec = 0;
+ base = 0;
argnum = 0;
have_prec = FALSE;
signchar = FALSE;