Merge "adb: use correct _WIN32 macro."

This commit is contained in:
Josh Gao 2015-11-02 18:55:09 +00:00 committed by Gerrit Code Review
commit 5c75b529f6

View file

@ -439,7 +439,7 @@ static void* stdin_read_thread(void* x) {
adb_thread_setname("stdin reader");
#ifndef __WIN32
#ifndef _WIN32
// Mask SIGTTIN in case we're in a backgrounded process
sigset_t sigset;
sigemptyset(&sigset);