fixed typo in S_abnormal_exit

original commit: 53780b295c876f524ca73b6e93ab27960808622d
This commit is contained in:
Bob Burger 2017-06-27 12:26:22 -04:00
parent 3df996fe45
commit 0af9c2bbbf
2 changed files with 3 additions and 1 deletions

2
LOG
View File

@ -527,3 +527,5 @@
bytevector.ss, primdata.ss, new-io.c, prim5.c, externs.h, bytevector.ss, primdata.ss, new-io.c, prim5.c, externs.h,
objects.stex, release_notes.stex, objects.stex, release_notes.stex,
bytevector.ms, root-experr* bytevector.ms, root-experr*
- fixed typo in S_abnormal_exit
schsig.c

View File

@ -314,7 +314,7 @@ void S_error_abort(s) const char *s; {
void S_abnormal_exit() { void S_abnormal_exit() {
S_abnormal_exit_proc(); S_abnormal_exit_proc();
fprintf(stderr, "abnormal_exit proedure did not exit\n"); fprintf(stderr, "abnormal_exit procedure did not exit\n");
exit(1); exit(1);
} }