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

Commit 7accfc2f authored by Stephen Hines's avatar Stephen Hines Committed by Android Git Automerger
Browse files

am f889f0db: Merge "Trivial signed/unsigned warning fix for adbd"

* commit 'f889f0db':
  Trivial signed/unsigned warning fix for adbd
parents e7b2a436 f889f0db
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -266,7 +266,7 @@ static const char _ok_resp[] = "ok";

        /* Send the 'accept' request. */
        res = adb_write(fd, _accept_req, strlen(_accept_req));
        if (res == strlen(_accept_req)) {
        if ((size_t)res == strlen(_accept_req)) {
            /* Wait for the response. In the response we expect 'ok' on success,
             * or 'ko' on failure. */
            res = adb_read(fd, tmp, sizeof(tmp));