aboutsummaryrefslogtreecommitdiffstats
path: root/debug.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-06-25 23:11:40 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-06-25 23:11:40 +0300
commit3712ad29b6cddcf49bf1507f5677a49ccfcff83d (patch)
tree572be0d60db1b5814363b6d20d6b0367e1a3b8b1 /debug.c
parent88541e4626f3010097bed969770bfad0b97b4747 (diff)
downloadegawk-3712ad29b6cddcf49bf1507f5677a49ccfcff83d.tar.gz
egawk-3712ad29b6cddcf49bf1507f5677a49ccfcff83d.tar.bz2
egawk-3712ad29b6cddcf49bf1507f5677a49ccfcff83d.zip
Typo fix in debug.c.
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.c b/debug.c
index d0e47f4a..2bb6e53a 100644
--- a/debug.c
+++ b/debug.c
@@ -1794,7 +1794,7 @@ initialize_watch_item(struct list_item *w)
w->flags |= CUR_IS_ARRAY;
w->cur_size = assoc_length(symbol);
} else if (symbol->type == Node_typedregex) {
- w->cur_value = dupnode(r);
+ w->cur_value = dupnode(symbol);
} /* else
can't happen */
}