From e030e9f0b8be42dd8c5eb43e3f390106f3b6a48e Mon Sep 17 00:00:00 2001 From: mame Date: Wed, 26 Dec 2018 09:04:12 +0000 Subject: 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 --- object.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'object.c') 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; } -- cgit v1.2.3