From 800a5e86cf0d8c2869861d0761fc0808629b6f96 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 2 Feb 2018 15:16:22 +0000 Subject: [PATCH] eval.c: unnecessary argument * eval.c (rb_interrupt): removed unnecessary convertsion specifier and an empty string. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62162 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eval.c b/eval.c index c6fbd2e595..9849827eef 100644 --- a/eval.c +++ b/eval.c @@ -641,7 +641,7 @@ rb_exc_fatal(VALUE mesg) void rb_interrupt(void) { - rb_raise(rb_eInterrupt, "%s", ""); + rb_raise(rb_eInterrupt, ""); } enum {raise_opt_cause, raise_max_opt}; /*< \private */