diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-12-01 08:26:05 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-12-01 08:26:05 +0200 |
commit | 5712ad9b220c097371f0e83d09c3b1ce5e511c55 (patch) | |
tree | 030896150be339e0a28b2a312da26553ac19bb7c /debug.c | |
parent | a4f7d089fd1bab11a63627df6ad3a55e541662fd (diff) | |
download | egawk-5712ad9b220c097371f0e83d09c3b1ce5e511c55.tar.gz egawk-5712ad9b220c097371f0e83d09c3b1ce5e511c55.tar.bz2 egawk-5712ad9b220c097371f0e83d09c3b1ce5e511c55.zip |
Fixes for cygwin, make new dist file for me.
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -67,7 +67,7 @@ static int prog_running = FALSE; struct condition { INSTRUCTION *code; - CONTEXT *ctxt; + AWK_CONTEXT *ctxt; char *expr; }; @@ -5418,7 +5418,7 @@ do_eval(CMDARG *arg, int cmd ATTRIBUTE_UNUSED) NODE *this_frame = NULL, *this_func = NULL; NODE **sp; INSTRUCTION *eval, *code = NULL; - CONTEXT *ctxt; + AWK_CONTEXT *ctxt; char **save_parmlist = NULL; int ecount = 0, pcount = 0; int ret; @@ -5579,7 +5579,7 @@ static int parse_condition(int type, int num, char *expr) { INSTRUCTION *code = NULL; - CONTEXT *ctxt = NULL; + AWK_CONTEXT *ctxt = NULL; int ret; BREAKPOINT *b; struct list_item *w; |