Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mostly a refactor of tests #513

Merged
merged 15 commits into from
Dec 6, 2023
Prev Previous commit
Next Next commit
fixed typo
  • Loading branch information
KjellKod committed Dec 6, 2023
commit a5edfcb447cd7802be45574f8a09545dcec57c7e
4 changes: 2 additions & 2 deletions src/crashhandler_windows.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ namespace g3 {
// FYI: Concept of async-signal-safe operations does not exist on windows
// we stick to perror for lack of better alternatives.
size_t writeErrorMessage(const char* message) {
perror(message)
perror(message);
}

// Restore back to default fatal event handling
Expand Down Expand Up @@ -226,7 +226,7 @@ namespace g3 {
if (SIG_ERR == signal(SIGSEGV, signalHandler))
internal::writeErrorMessage("signal - SIGSEGV");
if (SIG_ERR == signal(SIGILL, signalHandler))
internal::writeErrorMessag("signal - SIGILL");
internal::writeErrorMessage("signal - SIGILL");
}
#endif
}
Expand Down
Loading