rb_debug_rstring_null_ptr: add newlines in the message [ci skip]

The message should end with a newline, and break the long
paragraph.
This commit is contained in:
Nobuyoshi Nakada 2022-02-21 16:20:12 +09:00
Родитель f92f08ff23
Коммит 8f0e3a97f9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -268,9 +268,9 @@ void
rb_debug_rstring_null_ptr(const char *func)
{
fprintf(stderr, "%s is returning NULL!! "
"SIGSEGV is highly expected to follow immediately. "
"SIGSEGV is highly expected to follow immediately.\n"
"If you could reproduce, attach your debugger here, "
"and look at the passed string.",
"and look at the passed string.\n",
func);
}