fix typo
All checks were successful
build_test / build (push) Successful in 6m14s

This commit is contained in:
PoliEcho 2025-05-28 15:16:18 +02:00
parent 0a07589e0e
commit eaf6f44464

View File

@ -1,7 +1,7 @@
#include <curses.h>
#include <csignal>
#include <iostream>
#include "memory.h"
#include <csignal>
#include <curses.h>
#include <iostream>
void safe_exit(int code) {
switch (code) {
case SIGTERM:
@ -18,7 +18,7 @@ void safe_exit(int code) {
break;
case SIGSEGV:
std::cerr << "\nreceived SIGSEGV(segmentaiton fault) exiting...\nIf this "
std::cerr << "\nreceived SIGSEGV(segmentation fault) exiting...\nIf this "
"repeats please report it as a bug\n";
break;