From 4a1397264b998442aacf0e7e79bdd65ba72867dd Mon Sep 17 00:00:00 2001 From: Josh Gao Date: Fri, 30 Oct 2015 18:38:34 -0700 Subject: [PATCH] adb: use correct _WIN32 macro. Change-Id: I5af7957162ae7f8472a5a262434eaba84e64325a --- adb/commandline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adb/commandline.cpp b/adb/commandline.cpp index eff987619..37bd77794 100644 --- a/adb/commandline.cpp +++ b/adb/commandline.cpp @@ -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);