diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-22 10:56:43 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-22 10:56:43 +0000 |
commit | f11a6f2d65e01b966e5053ea8438d5e6c590c423 (patch) | |
tree | 37d7e113e346ad22cacc4a6023257a3a7118ebe9 /proc.c | |
parent | e2bc064096cf85f3bf4dcdbb17a4f1f5a4de09ea (diff) | |
download | ruby-f11a6f2d65e01b966e5053ea8438d5e6c590c423.tar.gz |
* proc.c (proc_to_s): revert the change from %p to %lx at YARV
merge time.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12584 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r-- | proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -552,7 +552,7 @@ proc_to_s(VALUE self) if (iseq->insn_info_tbl) { line_no = iseq->insn_info_tbl[0].line_no; } - str = rb_sprintf("#<%s:%lx@%s:%d%s>", cname, self, + str = rb_sprintf("#<%s:%p@%s:%d%s>", cname, self, RSTRING_PTR(iseq->filename), line_no, proc->is_lambda ? " (lambda)" : ""); |