summaryrefslogtreecommitdiff
path: root/tools/emulator/opengl/shared/OpenglCodecCommon
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2012-03-22 12:57:54 -0700
committerJean-Baptiste Queru <jbq@google.com>2012-03-22 12:57:54 -0700
commit40b67a0eb0ae7c612dd30611121cf3c655c49793 (patch)
treee2e93c8e2778eadd8b63d93f56de89b7dfefd3b2 /tools/emulator/opengl/shared/OpenglCodecCommon
parentcbd78651ba6c8a9c6c2cac5c7872b35bbd5b355a (diff)
parent8aafafe4bdf6c3e0873a0b0fa6787b573eac24ee (diff)
Merge 8aafafe4
Change-Id: I41f097b5b96c4d000b1748b9e0411497d323556a
Diffstat (limited to 'tools/emulator/opengl/shared/OpenglCodecCommon')
-rw-r--r--tools/emulator/opengl/shared/OpenglCodecCommon/SocketStream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/emulator/opengl/shared/OpenglCodecCommon/SocketStream.cpp b/tools/emulator/opengl/shared/OpenglCodecCommon/SocketStream.cpp
index ddc56d0e3..f7a2314f9 100644
--- a/tools/emulator/opengl/shared/OpenglCodecCommon/SocketStream.cpp
+++ b/tools/emulator/opengl/shared/OpenglCodecCommon/SocketStream.cpp
@@ -73,7 +73,7 @@ void *SocketStream::allocBuffer(size_t minSize)
m_buf = p;
m_bufsize = allocSize;
} else {
- ERR("%s: realloc (%d) failed\n", __FUNCTION__, allocSize);
+ ERR("%s: realloc (%zu) failed\n", __FUNCTION__, allocSize);
free(m_buf);
m_buf = NULL;
m_bufsize = 0;