Fix windows build broken by r297612

I have got my boolean logic incorrect. Sorry about the spam.

llvm-svn: 297615
This commit is contained in:
Pavel Labath 2017-03-13 11:23:59 +00:00
parent e39fa57d35
commit 6a3b059fb7
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ void FileSpec::ResolveUsername(llvm::SmallVectorImpl<char> &path) {
size_t FileSpec::ResolvePartialUsername(llvm::StringRef partial_name,
StringList &matches) {
#if !defined(LLVM_ON_WIN32) || !defined(__ANDROID__)
#if !defined(LLVM_ON_WIN32) && !defined(__ANDROID__)
size_t extant_entries = matches.GetSize();
setpwent();