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

Commit 9ff588f8 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am f1296b9e: Merge "Use %zd for size_t."

* commit 'f1296b9e':
  Use %zd for size_t.
parents 9c39c96a f1296b9e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -579,7 +579,7 @@ static void peerProxyBeforeSelect(SelectableFd* fd) {

/** Prepare to read bytes from the peer. */
static void peerProxyExpectBytes(PeerProxy* peerProxy, Header* header) {
    ALOGD("Expecting %d bytes.", header->size);
    ALOGD("Expecting %zd bytes.", header->size);

    peerProxy->inputState = READING_BYTES;
    if (bufferPrepareForRead(peerProxy->inputBuffer, header->size) == -1) {