summaryrefslogtreecommitdiff
path: root/awkgram.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2013-01-25 10:50:12 +0200
committerArnold D. Robbins <arnold@skeeve.com>2013-01-25 10:50:12 +0200
commitda1d22c183f5d8241538524665e572c5c6a15865 (patch)
tree6c76d7940657e794f7f02bfb49b3d22bfcff330d /awkgram.c
parent5cca2a2d008689dfc415415f71bae1b7b7923bd6 (diff)
downloadgawk-da1d22c183f5d8241538524665e572c5c6a15865.tar.gz
Considerable additional portability fixes.
Diffstat (limited to 'awkgram.c')
-rw-r--r--awkgram.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/awkgram.c b/awkgram.c
index 07a6dce8..d15e5ac8 100644
--- a/awkgram.c
+++ b/awkgram.c
@@ -87,7 +87,7 @@ static char **check_params(char *fname, int pcount, INSTRUCTION *list);
static int install_function(char *fname, INSTRUCTION *fi, INSTRUCTION *plist);
static NODE *mk_rexp(INSTRUCTION *exp);
static void param_sanity(INSTRUCTION *arglist);
-static int parms_shadow(INSTRUCTION *pc, int *shadow);
+static int parms_shadow(INSTRUCTION *pc, bool *shadow);
#ifndef NO_LINT
static int isnoeffect(OPCODE type);
#endif
@@ -6530,7 +6530,7 @@ snode(INSTRUCTION *subn, INSTRUCTION *r)
/* parms_shadow --- check if parameters shadow globals */
static int
-parms_shadow(INSTRUCTION *pc, int *shadow)
+parms_shadow(INSTRUCTION *pc, bool *shadow)
{
int pcount, i;
bool ret = false;