mirror of https://github.com/BOINC/boinc.git
client: Use strerror() in kill_app_processes() on Windows instead of boincerror().
This commit is contained in:
parent
7a9b572fb5
commit
9b07d17821
|
@ -216,7 +216,7 @@ static void kill_app_process(int pid, bool will_restart) {
|
|||
if (retval && log_flags.task_debug) {
|
||||
msg_printf(0, MSG_INFO,
|
||||
"[task] kill_app_process() failed: %s",
|
||||
boincerror(retval)
|
||||
strerror(retval)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue