summaryrefslogtreecommitdiffstats
path: root/error.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-28 03:51:52 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-28 03:51:52 +0000
commit78c3ac8cb1d6855d95e70b94a66829ffa0c14700 (patch)
tree6865924362f3e5f348d9ed8715311720f740a331 /error.c
parent6d9b68817e92e5905a9ad549fdaba09f985e938e (diff)
downloadruby-78c3ac8cb1d6855d95e70b94a66829ffa0c14700.tar.gz
ruby-78c3ac8cb1d6855d95e70b94a66829ffa0c14700.tar.xz
ruby-78c3ac8cb1d6855d95e70b94a66829ffa0c14700.zip
banish a warning.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9327 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r--error.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/error.c b/error.c
index ca0e0cf5c..74a78345b 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));
}
}