We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b3512 commit 3d5f9afCopy full SHA for 3d5f9af
system/lib/libcxx/src/verbose_abort.cpp
@@ -35,7 +35,7 @@ _LIBCPP_WEAK void __libcpp_verbose_abort(char const* format, ...) _LIBCPP_VERBOS
35
// passed to __libcpp_verbose_abort. The _LIBCPP_VERBOSE_ABORT macro seems to never use
36
// newlines, but _LIBCPP_ASSERTION_HANDLER does include a newline.
37
if (format[strlen(format) - 1] != '\n') {
38
- std::fprintf(stderr, "\n");
+ std::fputc('\n', stderr);
39
}
40
va_end(list);
41
0 commit comments