summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-23 16:36:26 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-23 16:36:26 +0000
commit5ea16ea6de794451b8a9040eeb951b1b045c647c (patch)
treef73517a2de3145fb34c530cdb5b48f864c432352
parent8b5ffc368379b24d8e1f91c901a43f33d4eaefd1 (diff)
* debug.c (ruby_debug_print_id): use rb_id2name() for fprintf().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--debug.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1e62df2c99..36526f9c66 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun May 24 01:35:22 2015 Koichi Sasada <ko1@atdot.net>
+
+ * debug.c (ruby_debug_print_id): use rb_id2name() for fprintf().
+
Sat May 23 18:38:46 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* man/*.1: updated dates in man pages.
diff --git a/debug.c b/debug.c
index b526ab9523..a5ae6a7467 100644
--- a/debug.c
+++ b/debug.c
@@ -115,7 +115,7 @@ ID
ruby_debug_print_id(int level, int debug_level, const char *header, ID id)
{
if (level < debug_level) {
- fprintf(stderr, "DBG> %s: %"PRIsVALUE"\n", header, rb_id2str(id));
+ fprintf(stderr, "DBG> %s: %s\n", header, rb_id2name(id));
fflush(stderr);
}
return id;