diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-05-16 02:46:16 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-05-16 02:46:16 +0000 |
commit | df54a2e6be074957bcd1c19b4b9d19766da445de (patch) | |
tree | 4d1ae3a000d91dafbc2a7a31913a9939f7de94a5 /node.c | |
parent | e2f2cf425c2802980d02f07075b1f7320bad305a (diff) | |
download | ruby-df54a2e6be074957bcd1c19b4b9d19766da445de.tar.gz |
* cont.c (fiber_set_stack_location), iseq.c (prepare_iseq_build),
node.c (dump_node): suppress warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27808 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.c')
-rw-r--r-- | node.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -501,7 +501,7 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node) F_CUSTOM1(nd_nth, "variable", { char name[3]; name[0] = '$'; - name[1] = node->nd_nth; + name[1] = (char)node->nd_nth; name[2] = '\0'; A(name); }); |