From d919a67c1e704ba7c7f0067ec649c98288a662fe Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 30 Jul 2009 07:43:32 +0000 Subject: * variable.c (rb_class_path): fixed a variable. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variable.c b/variable.c index 966a7e0df8..f5e6ff194f 100644 --- a/variable.c +++ b/variable.c @@ -193,7 +193,7 @@ rb_class_path(VALUE klass) if (!NIL_P(path)) return path; if (RCLASS_IV_TBL(klass) && st_lookup(RCLASS_IV_TBL(klass), (st_data_t)tmp_classpath, &n)) { - return path; + return (VALUE)n; } else { const char *s = "Class"; -- cgit v1.2.3