1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ruby.c (dump_option): fix a typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53794 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2016-02-09 08:55:18 +00:00
parent 67d1018982
commit add54214c7

2
ruby.c
View file

@ -830,7 +830,7 @@ debug_option(const char *str, int len, void *arg)
static void
dump_option(const char *str, int len, void *arg)
{
static const char list[] = EACH_DEBUG_FEATURES(LITERAL_NAME_ELEMENT);
static const char list[] = EACH_DUMPS(LITERAL_NAME_ELEMENT);
#define SET_WHEN_DUMP(bit) SET_WHEN(#bit, DUMP_BIT(bit), str, len)
EACH_DUMPS(SET_WHEN_DUMP);
rb_warn("don't know how to dump `%.*s',", len, str);