Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Francesco Gazzetta
Glasgow Haskell Compiler
Commits
3030eee2
Commit
3030eee2
authored
Oct 03, 2017
by
Ben Gamari
🐢
Browse files
rts: Print newline after "Stack trace:" on barf
[skip ci]
parent
3201d85f
Changes
1
Hide whitespace changes
Inline
Side-by-side
rts/RtsMessages.c
View file @
3030eee2
...
...
@@ -166,7 +166,7 @@ rtsFatalInternalErrorFn(const char *s, va_list ap)
vfprintf
(
stderr
,
s
,
ap
);
#if USE_LIBDW
fprintf
(
stderr
,
"
\n
"
);
fprintf
(
stderr
,
"Stack trace:"
);
fprintf
(
stderr
,
"Stack trace:
\n
"
);
LibdwSession
*
session
=
libdwInit
();
Backtrace
*
bt
=
libdwGetBacktrace
(
session
);
libdwPrintBacktrace
(
session
,
stderr
,
bt
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment