From 56689eaca9eaf74af9fa64c7387ac83333084eab Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 9 Aug 2016 05:05:10 +0000 Subject: tcltklib.c: use PRIsVALUE [ci skip] * ext/tk/tcltklib.c (set_max_block_time): use PRIsVALUE to get rid of dangling pointer. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55841 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/tcltklib.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'ext/tk/tcltklib.c') diff --git a/ext/tk/tcltklib.c b/ext/tk/tcltklib.c index ea6ffadc50..430c934dc8 100644 --- a/ext/tk/tcltklib.c +++ b/ext/tk/tcltklib.c @@ -1904,11 +1904,7 @@ set_max_block_time(self, time) break; default: - { - VALUE tmp = rb_funcallv(time, ID_inspect, 0, 0); - rb_raise(rb_eArgError, "invalid value for time: '%s'", - StringValuePtr(tmp)); - } + rb_raise(rb_eArgError, "invalid value for time: '%+"PRIsVALUE"'", time); } Tcl_SetMaxBlockTime(&tcl_time); -- cgit v1.2.3