* error.c (warning_string): `file` is already cstr.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60793 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2017-11-16 05:56:21 +00:00
Родитель 360b78e4dc
Коммит 1ae69a2064
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -230,8 +230,7 @@ warning_string(rb_encoding *enc, const char *fmt, va_list args)
{
int line;
const char *file = rb_source_location_cstr(&line);
return warn_vsprintf(enc,
RSTRING_PTR(file), line, fmt, args);
return warn_vsprintf(enc, file, line, fmt, args);
}
#define with_warning_string(mesg, enc, fmt) \