summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-30 07:43:32 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-30 07:43:32 +0000
commit6410694b3783276b964e220d6db1a8c88312585a (patch)
tree2287e80c180281a6dcfbc6d64d4abd2d7a5ecd63
parente69e041a0fdc93d39f3fcd51201e131b1715228e (diff)
downloadruby-6410694b3783276b964e220d6db1a8c88312585a.tar.gz
ruby-6410694b3783276b964e220d6db1a8c88312585a.tar.xz
ruby-6410694b3783276b964e220d6db1a8c88312585a.zip
* variable.c (rb_class_path): fixed a variable.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--variable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/variable.c b/variable.c
index 966a7e0df..f5e6ff194 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";