am f1296b9e
: Merge "Use %zd for size_t."
* commit 'f1296b9e92cb04f9bba8c622560d37dfc53c7aa4': Use %zd for size_t.
This commit is contained in:
commit
9ff588f84b
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue