diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-18 01:59:00 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-18 01:59:00 +0000 |
| commit | 17b81e247c8c4652dc708661d8f559a9c3cbf510 (patch) | |
| tree | 5a2796521a2c923270736344e1cb1d9d1052b461 /variable.c | |
| parent | c5fd3513546c63accf9fd7a935c5e9872db4383e (diff) | |
| download | ruby-17b81e247c8c4652dc708661d8f559a9c3cbf510.tar.gz ruby-17b81e247c8c4652dc708661d8f559a9c3cbf510.tar.xz ruby-17b81e247c8c4652dc708661d8f559a9c3cbf510.zip | |
* dir.c (dir_s_glob): remove unused variable.
* math.c (math_log): ditto.
* re.c (rb_reg_regcomp): ditto.
* eval.c (break_jump): ditto.
* eval.c (rb_thread_yield_0): remove unused function.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10957 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
| -rw-r--r-- | variable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/variable.c b/variable.c index 11a301733..9c51b9d4d 100644 --- a/variable.c +++ b/variable.c @@ -196,7 +196,7 @@ rb_class_path(VALUE klass) s = rb_class2name(RBASIC(klass)->klass); } } - path = rb_sprintf("#<%s:%p>", s, klass); + path = rb_sprintf("#<%s:%p>", s, (void*)klass); rb_ivar_set(klass, tmp_classpath, path); return path; |
