From fb4c8c3a2aea1993dacaafef454e1f12e0341e05 Mon Sep 17 00:00:00 2001 From: ktsj Date: Fri, 7 Jun 2013 14:22:53 +0000 Subject: [PATCH] * variable.c (rb_const_set): fix missing semicolon. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41150 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variable.c b/variable.c index ee298a0311..82dd217968 100644 --- a/variable.c +++ b/variable.c @@ -2140,7 +2140,7 @@ void rb_const_set(VALUE klass, ID id, VALUE val) { rb_const_entry_t *ce; - rb_const_flag_t visibility = CONST_PUBLIC + rb_const_flag_t visibility = CONST_PUBLIC; if (NIL_P(klass)) { rb_raise(rb_eTypeError, "no class/module to define constant %"PRIsVALUE"",