diff options
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); |