client: Use strerror() in kill_app_processes() on Windows instead of boincerror().

This commit is contained in:
Rom Walton 2014-07-27 14:15:15 -04:00
parent 7a9b572fb5
commit 9b07d17821
1 changed files with 1 additions and 1 deletions

View File

@ -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)
);
}
}