diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-25 10:50:12 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-25 10:50:12 +0200 |
commit | da1d22c183f5d8241538524665e572c5c6a15865 (patch) | |
tree | 6c76d7940657e794f7f02bfb49b3d22bfcff330d /awkgram.c | |
parent | 5cca2a2d008689dfc415415f71bae1b7b7923bd6 (diff) | |
download | egawk-da1d22c183f5d8241538524665e572c5c6a15865.tar.gz egawk-da1d22c183f5d8241538524665e572c5c6a15865.tar.bz2 egawk-da1d22c183f5d8241538524665e572c5c6a15865.zip |
Considerable additional portability fixes.
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; |