Fix typo and lack of new line

This commit is contained in:
Konstantin Pereiaslov
2023-09-05 03:37:47 -05:00
parent 0d0f5c81ef
commit 468dba6985

View File

@@ -74,7 +74,7 @@ void pause_command(pid_t pid) {
send_signal_to_pid(pid, SIGSTOP, "SIGSTOP");
break;
default:
fprintf_error("Unsupported paused method: %i", pause_method );
fprintf_error("Unsupported pause method: %i\n", pause_method);
exit(1);
}
}