diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/platform_file_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/platform_file_posix.cc b/base/platform_file_posix.cc index 6aa7aa1..b4b7862 100644 --- a/base/platform_file_posix.cc +++ b/base/platform_file_posix.cc @@ -29,7 +29,7 @@ PlatformFile CreatePlatformFile(const std::wstring& name, !(flags & PLATFORM_FILE_OPEN_ALWAYS)) { NOTREACHED(); errno = ENOTSUP; - return INVALID_HANDLE_VALUE; + return kInvalidPlatformFileValue; } if (flags & PLATFORM_FILE_WRITE && flags & PLATFORM_FILE_READ) { |