eval.c: get rid of format-zero-length warning

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62169 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-02-02 23:25:42 +00:00
Родитель 8b242a0d09
Коммит da01eb93e4
1 изменённых файлов: 1 добавлений и 1 удалений

2
eval.c
Просмотреть файл

@ -641,7 +641,7 @@ rb_exc_fatal(VALUE mesg)
void
rb_interrupt(void)
{
rb_raise(rb_eInterrupt, "");
rb_exc_raise(rb_exc_new(rb_eInterrupt, 0, 0));
}
enum {raise_opt_cause, raise_max_opt}; /*< \private */