Merge "adb: use correct _WIN32 macro."

am: 5c75b529f6

* commit '5c75b529f684b388c91c7e7d0b2c7fece376ac1d':
  adb: use correct _WIN32 macro.
This commit is contained in:
Josh Gao 2015-11-02 18:59:01 +00:00 committed by android-build-merger
commit dcaf6932fd
1 changed files with 1 additions and 1 deletions

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);