From 1518075b17c9240dce5f76ef9c5ca45f71f9a48d Mon Sep 17 00:00:00 2001 From: otavepto Date: Mon, 11 Mar 2024 01:40:47 +0200 Subject: [PATCH] spelling --- crash_printer/tests/test_linux_sa_handler.cpp | 2 +- crash_printer/tests/test_linux_sa_sigaction.cpp | 2 +- crash_printer/tests/test_win.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crash_printer/tests/test_linux_sa_handler.cpp b/crash_printer/tests/test_linux_sa_handler.cpp index 1f90b9c9..8e605098 100644 --- a/crash_printer/tests/test_linux_sa_handler.cpp +++ b/crash_printer/tests/test_linux_sa_handler.cpp @@ -35,7 +35,7 @@ void exception_handler_SIGILL(int signal) int main() { - // simululate the existence of previous handler + // simulate the existence of previous handler struct sigaction sa_SIGSEGV_prev{}; sa_SIGSEGV_prev.sa_handler = exception_handler_SIGILL; sa_SIGSEGV_prev.sa_flags = SA_RESETHAND; diff --git a/crash_printer/tests/test_linux_sa_sigaction.cpp b/crash_printer/tests/test_linux_sa_sigaction.cpp index 06ccfba8..b771ec1d 100644 --- a/crash_printer/tests/test_linux_sa_sigaction.cpp +++ b/crash_printer/tests/test_linux_sa_sigaction.cpp @@ -35,7 +35,7 @@ void exception_handler_SIGILL(int signal, siginfo_t *info, void *context) int main() { - // simululate the existence of previous handler + // simulate the existence of previous handler struct sigaction sa_SIGSEGV_prev{}; sa_SIGSEGV_prev.sa_sigaction = exception_handler_SIGILL; sa_SIGSEGV_prev.sa_flags = SA_SIGINFO | SA_RESETHAND; diff --git a/crash_printer/tests/test_win.cpp b/crash_printer/tests/test_win.cpp index 2bcd0598..ab7c14ed 100644 --- a/crash_printer/tests/test_win.cpp +++ b/crash_printer/tests/test_win.cpp @@ -32,7 +32,7 @@ static LONG WINAPI exception_handler(LPEXCEPTION_POINTERS ex_pointers) int main() { - // simululate the existence of previous handler + // simulate the existence of previous handler SetUnhandledExceptionFilter(exception_handler); if (!remove_file(logs_filepath)) {