From bf1d7521e2beace37383de0c274484ce1698777b Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 24 Sep 2019 00:14:06 -0700 Subject: [PATCH] Win compile fix --- client/app_control.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/app_control.cpp b/client/app_control.cpp index 33ab3ef417..02858dd673 100644 --- a/client/app_control.cpp +++ b/client/app_control.cpp @@ -479,7 +479,8 @@ void ACTIVE_TASK::handle_exited_app(int stat) { // if another process killed the app, it looks like exit(0). // 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"); break; }