From cce5115e21db1702e0617afdca36633e7e2c9eae Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Thu, 15 Jul 2010 23:24:47 +0300 Subject: Move to gawk 2.11.1 as found on Walnut Creek CD-ROM. --- array.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'array.c') diff --git a/array.c b/array.c index 9bab82d6..1bc0fe04 100644 --- a/array.c +++ b/array.c @@ -55,7 +55,6 @@ NODE *tree; subsep = SUBSEP_node->lnode->stptr; len = r->stlen + subseplen + 1; emalloc(str, char *, len, "concat_exp"); - s = str; memcpy(str, r->stptr, r->stlen+1); s = str + r->stlen; free_temp(r); @@ -176,7 +175,7 @@ NODE ** assoc_lookup(symbol, subs) NODE *symbol, *subs; { - register int hash1 = 0, i; + register int hash1, i; register NODE *bucket; hash1 = hash_calc(subs); @@ -207,7 +206,7 @@ void do_delete(symbol, tree) NODE *symbol, *tree; { - register int hash1 = 0; + register int hash1; register NODE *bucket, *last; NODE *subs; -- cgit v1.2.3