aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/native/windows/file-jni.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/native/windows/file-jni.cc')
-rw-r--r--src/main/native/windows/file-jni.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/native/windows/file-jni.cc b/src/main/native/windows/file-jni.cc
index 0f3334c517..0dc4fbd7ab 100644
--- a/src/main/native/windows/file-jni.cc
+++ b/src/main/native/windows/file-jni.cc
@@ -98,7 +98,7 @@ Java_com_google_devtools_build_lib_windows_jni_WindowsFileOperations_nativeDelet
std::wstring wpath(bazel::windows::GetJavaWstring(env, path));
std::wstring error;
int result = bazel::windows::DeletePath(wpath, &error);
- if (result != bazel::windows::DELETE_PATH_SUCCESS && !error.empty() &&
+ if (result != bazel::windows::DeletePathResult::kSuccess && !error.empty() &&
CanReportError(env, error_msg_holder)) {
ReportLastError(
bazel::windows::MakeErrorMessage(WSTR(__FILE__), __LINE__,