diff options
Diffstat (limited to 'fastboot/fastboot.cpp')
-rw-r--r-- | fastboot/fastboot.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index 6b6e659c6..925cac430 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -79,8 +79,8 @@ using android::base::Split; using android::base::Trim; using android::base::unique_fd; -#ifndef O_BINARY -#define O_BINARY 0 +#if defined(_WIN32) +#define O_CLOEXEC O_NOINHERIT #endif static const char* serial = nullptr; |