Merge "Use %zd for size_t."
This commit is contained in:
commit
f1296b9e92
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