Add newline when printing dlopen error message

This commit is contained in:
Peter Zhu 2024-07-22 10:25:44 -04:00
Родитель 82aee1a946
Коммит 5e3b8010ed
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -685,7 +685,7 @@ ruby_external_gc_init(void)
handle = dlopen(gc_so_path, RTLD_LAZY | RTLD_GLOBAL);
if (!handle) {
fprintf(stderr, "%s", dlerror());
fprintf(stderr, "%s\n", dlerror());
rb_bug("ruby_external_gc_init: Shared library %s cannot be opened", gc_so_path);
}
}