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

* commit 'f1296b9e92cb04f9bba8c622560d37dfc53c7aa4':
  Use %zd for size_t.
This commit is contained in:
Elliott Hughes 2013-10-18 17:40:26 -07:00 committed by Android Git Automerger
commit 9ff588f84b

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