diff options
Diffstat (limited to 'awkgram.c')
-rw-r--r-- | awkgram.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |