summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/KillTheDoctor/KillTheDoctor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/KillTheDoctor/KillTheDoctor.cpp b/utils/KillTheDoctor/KillTheDoctor.cpp
index feba2e54f6..a0d314bf10 100644
--- a/utils/KillTheDoctor/KillTheDoctor.cpp
+++ b/utils/KillTheDoctor/KillTheDoctor.cpp
@@ -210,7 +210,7 @@ static error_code GetFileNameFromHandle(HANDLE FileHandle,
return windows_error(::GetLastError());
else {
Name = Filename;
- return windows_error::success;
+ return error_code();
}
}
@@ -249,7 +249,7 @@ static std::string FindProgram(const std::string &Program, error_code &ec) {
break;
} else {
// We found the path! Return it.
- ec = windows_error::success;
+ ec = error_code();
break;
}
}