зеркало из https://github.com/github/ruby.git
fix r60792.
* 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:
Родитель
360b78e4dc
Коммит
1ae69a2064
3
error.c
3
error.c
|
@ -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) \
|
||||
|
|
Загрузка…
Ссылка в новой задаче