summaryrefslogtreecommitdiff
path: root/node.c
diff options
context:
space:
mode:
Diffstat (limited to 'node.c')
-rw-r--r--node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/node.c b/node.c
index 042d4724f6..bbeb24aa8c 100644
--- a/node.c
+++ b/node.c
@@ -474,7 +474,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
switch (node->nd_aid) {
case 0: A("0 (||)"); break;
case 1: A("1 (&&)"); break;
- default: A_ID(node->nd_mid);
+ default: A_ID(node->nd_aid);
}
}
LAST_NODE;