commit | 5e6311b5413e964dfd49c413535ecf10be483d21 | [log] [tgz] |
---|---|---|
author | Josh Gao <jmgao@google.com> | Fri Oct 30 18:38:34 2015 -0700 |
committer | Josh Gao <jmgao@google.com> | Fri Oct 30 18:39:20 2015 -0700 |
tree | 9d59684600abae4163796df201e175a1cb7c17f9 | |
parent | ab7dc64b2abf8dab1ea71141b9e231fa76315f3b [diff] |
adb: use correct _WIN32 macro. Change-Id: I5af7957162ae7f8472a5a262434eaba84e64325a
diff --git a/adb/commandline.cpp b/adb/commandline.cpp index eff9876..37bd777 100644 --- a/adb/commandline.cpp +++ b/adb/commandline.cpp
@@ -439,7 +439,7 @@ adb_thread_setname("stdin reader"); -#ifndef __WIN32 +#ifndef _WIN32 // Mask SIGTTIN in case we're in a backgrounded process sigset_t sigset; sigemptyset(&sigset);