Win compile fix

This commit is contained in:
David Anderson 2019-09-24 00:14:06 -07:00
parent 401dccb793
commit bf1d7521e2
1 changed files with 2 additions and 1 deletions

View File

@ -479,7 +479,8 @@ void ACTIVE_TASK::handle_exited_app(int stat) {
// if another process killed the app, it looks like exit(0). // if another process killed the app, it looks like exit(0).
// So check for the finish file // So check for the finish file
// //
if (finish_file_present()) { int e;
if (finish_file_present(e)) {
set_task_state(PROCESS_EXITED, "handle_exited_app"); set_task_state(PROCESS_EXITED, "handle_exited_app");
break; break;
} }