Skip to content

Commit

Permalink
Fix typo in signal.c error messages (#437)
Browse files Browse the repository at this point in the history
613e154 fixed it in one function but not the other two :)
  • Loading branch information
RReverser authored Sep 27, 2023
1 parent ce2f157 commit 7b4705f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libc-bottom-half/signal/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ static void core_handler(int sig) {

_Noreturn
static void terminate_handler(int sig) {
fprintf(stderr, "Program recieved termination signal: %s\n", strsignal(sig));
fprintf(stderr, "Program received termination signal: %s\n", strsignal(sig));
abort();
}

_Noreturn
static void stop_handler(int sig) {
fprintf(stderr, "Program recieved stop signal: %s\n", strsignal(sig));
fprintf(stderr, "Program received stop signal: %s\n", strsignal(sig));
abort();
}

Expand Down

0 comments on commit 7b4705f

Please sign in to comment.