aboutsummaryrefslogtreecommitdiffstats
path: root/object.c
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-26 09:04:12 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-26 09:04:12 +0000
commite030e9f0b8be42dd8c5eb43e3f390106f3b6a48e (patch)
tree5626921dc90c6d24dcd809c54ae2e714931217dc /object.c
parent2b21744efa34a685d0b3d3b333622989a7615cda (diff)
downloadruby-e030e9f0b8be42dd8c5eb43e3f390106f3b6a48e.tar.gz
object.c (rb_obj_match): use rb_warn for deprecation warning
Now the warning is printed even without -w option. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66576 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/object.c b/object.c
index a60626b5a1..31caea714f 100644
--- a/object.c
+++ b/object.c
@@ -1687,8 +1687,8 @@ rb_false(VALUE obj)
static VALUE
rb_obj_match(VALUE obj1, VALUE obj2)
{
- rb_warning("deprecated Object#=~ is called on %"PRIsVALUE
- "; it always returns nil", rb_obj_class(obj1));
+ rb_warn("deprecated Object#=~ is called on %"PRIsVALUE
+ "; it always returns nil", rb_obj_class(obj1));
return Qnil;
}