summaryrefslogtreecommitdiffstats
path: root/tools/android/forwarder2/common.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/android/forwarder2/common.cc')
-rw-r--r--tools/android/forwarder2/common.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/android/forwarder2/common.cc b/tools/android/forwarder2/common.cc
index c97ed80..3b7387d 100644
--- a/tools/android/forwarder2/common.cc
+++ b/tools/android/forwarder2/common.cc
@@ -19,7 +19,7 @@ void PError(const char* msg) {
void CloseFD(int fd) {
const int errno_copy = errno;
- if (HANDLE_EINTR(close(fd)) < 0) {
+ if (IGNORE_EINTR(close(fd)) < 0) {
PError("close");
errno = errno_copy;
}