Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8f672edf authored by JP Abgrall's avatar JP Abgrall Committed by Android Git Automerger
Browse files

am d4148e94: am ecac99b5: am 1367854a: Merge "adb: fix windows build after "forward --list" fix."

* commit 'd4148e94':
  adb: fix windows build after "forward --list" fix.
parents 076a4bfd d4148e94
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1188,7 +1188,7 @@ int writex(int fd, const void *ptr, size_t len)
                D("writex: fd=%d error %d: %s\n", fd, errno, strerror(errno));
                if (errno == EINTR)
                    continue;
                if (errno == EAGAIN || errno == EWOULDBLOCK) {
                if (errno == EAGAIN) {
                    adb_sleep_ms(1); // just yield some cpu time
                    continue;
                }