Clarify code intent of emergencyexit().

This commit is contained in:
Renaud 2015-07-17 10:48:17 +08:00
parent 2522a858c1
commit c10b525fb5
1 changed files with 1 additions and 1 deletions

2
main.c
View File

@ -107,7 +107,7 @@ extern unsigned _stklen = 32766;
static void emergencyexit(int signr)
{
quickexit(FALSE, 0);
quit(TRUE, 0);
quit( TRUE, 0) ; /* If quickexit fails (to save changes), do a force quit */
}
#endif