Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
KjellKod committed Dec 6, 2023
1 parent 70e40ef commit a5edfcb
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit a5edfcb

Please sign in to comment.