Merge "Use %zd for size_t."

This commit is contained in:
Elliott Hughes 2013-10-19 00:38:07 +00:00 committed by Gerrit Code Review
commit f1296b9e92

View file

@ -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) {