diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-01-08 11:08:24 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-01-08 11:08:24 +0200 |
commit | 117fe375fd1ab8aa02c7000f148142659ee14308 (patch) | |
tree | 36d5c7b78794c992ab1c23543fbbdd5071f373d7 /profile.c | |
parent | 4d6b2e5e35dff0b9fc51742ab5b7b0a06d9aff50 (diff) | |
parent | d562eb482f3180dcd59a332edc91027ea3844d90 (diff) | |
download | egawk-117fe375fd1ab8aa02c7000f148142659ee14308.tar.gz egawk-117fe375fd1ab8aa02c7000f148142659ee14308.tar.bz2 egawk-117fe375fd1ab8aa02c7000f148142659ee14308.zip |
Merge branch 'gawk-5.1-stable'
Diffstat (limited to 'profile.c')
-rw-r--r-- | profile.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -179,7 +179,7 @@ pp_push(int type, char *s, int flag, INSTRUCTION *comment) n->pp_str = s; n->pp_len = strlen(s); n->flags = flag; - n->type = type; + n->type = (NODETYPE) type; n->pp_next = pp_stack; n->pp_comment = comment; pp_stack = n; @@ -781,7 +781,7 @@ cleanup: case Op_indirect_func_call: case Op_func_call: { - char *pre; + const char *pre; int pcount; bool malloced = false; char *fname = adjust_namespace(pc->func_name, & malloced); |