From 3284ccb55ac6ec448eb5f688a408c8085a2386a6 Mon Sep 17 00:00:00 2001 From: akr Date: Wed, 28 Sep 2005 03:51:52 +0000 Subject: [PATCH] banish a warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9327 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/error.c b/error.c index ca0e0cf5c7..74a78345b9 100644 --- a/error.c +++ b/error.c @@ -231,7 +231,7 @@ rb_check_type(VALUE x, int t) } type++; } - rb_bug("unknown type 0x%x (%p given)", t, TYPE(x)); + rb_bug("unknown type 0x%x (0x%x given)", t, TYPE(x)); } }