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

Commit ae06933c authored by Edwin Vane's avatar Edwin Vane
Browse files

Trivial signed/unsigned warning fix for adbd



Change-Id: Icd674006bb2b526166960b4f90eb274030d80439
Author: Edwin Vane <edwin.vane@intel.com>
Reviewed-by: default avatarAriel J Bernal <ariel.j.bernal@intel.com>
parent 97d2aef6
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));