aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/testing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/zencore/testing.cpp')
-rw-r--r--src/zencore/testing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zencore/testing.cpp b/src/zencore/testing.cpp
index 9f88a3365..67285dcf1 100644
--- a/src/zencore/testing.cpp
+++ b/src/zencore/testing.cpp
@@ -39,7 +39,7 @@ PrintCrashCallstack([[maybe_unused]] const char* SignalName)
// Use write() + backtrace_symbols_fd() which are async-signal-safe
write(STDERR_FILENO, "\n*** Caught ", 12);
write(STDERR_FILENO, SignalName, strlen(SignalName));
- write(STDERR_FILENO, " — callstack:\n", 15);
+ write(STDERR_FILENO, " - callstack:\n", 15);
void* Frames[64];
int FrameCount = backtrace(Frames, 64);