summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Shih <robertshih@google.com>2016-07-14 13:50:32 -0700
committergitbuildkicker <android-build@google.com>2016-08-16 15:51:50 -0700
commit05713f1d239566bff957177f1a7aaba380fbc978 (patch)
tree2fb95d2c408446d614ef8723495719cda7bc7b1e
parent361db9e07657a6de075b5f23b5cfcecfd5a73fd3 (diff)
downloadframeworks_av-05713f1d239566bff957177f1a7aaba380fbc978.zip
frameworks_av-05713f1d239566bff957177f1a7aaba380fbc978.tar.gz
frameworks_av-05713f1d239566bff957177f1a7aaba380fbc978.tar.bz2
Fix build
Change-Id: I48ba34b3df9c9a896d4b18c3f48e41744b7dab54
-rw-r--r--media/libstagefright/codecs/mp3dec/SoftMP3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/codecs/mp3dec/SoftMP3.cpp b/media/libstagefright/codecs/mp3dec/SoftMP3.cpp
index 54fe622..9f7dd59 100644
--- a/media/libstagefright/codecs/mp3dec/SoftMP3.cpp
+++ b/media/libstagefright/codecs/mp3dec/SoftMP3.cpp
@@ -122,7 +122,7 @@ void SoftMP3::initDecoder() {
void *SoftMP3::memsetSafe(OMX_BUFFERHEADERTYPE *outHeader, int c, size_t len) {
if (len > outHeader->nAllocLen) {
- ALOGE("memset buffer too small: got %lu, expected %zu", (unsigned long)outHeader->nAllocLen, len);
+ ALOGE("memset buffer too small: got %u, expected %zu", outHeader->nAllocLen, len);
android_errorWriteLog(0x534e4554, "29422022");
notify(OMX_EventError, OMX_ErrorUndefined, OUTPUT_BUFFER_TOO_SMALL, NULL);
mSignalledError = true;