summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/AudioMixerOps.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-07-28 16:34:45 -0700
committerGlenn Kasten <gkasten@google.com>2014-07-29 15:45:38 -0700
commita4daf0b4f934b800a49f199fb8c09409391c8fc0 (patch)
treef2b1f47f9c09d21d0eb22f1f78d10c766e7a1c11 /services/audioflinger/AudioMixerOps.h
parent5fedaffddebd6b37f09cdc9804812945b9622498 (diff)
downloadframeworks_av-a4daf0b4f934b800a49f199fb8c09409391c8fc0.zip
frameworks_av-a4daf0b4f934b800a49f199fb8c09409391c8fc0.tar.gz
frameworks_av-a4daf0b4f934b800a49f199fb8c09409391c8fc0.tar.bz2
Fix build warnings
Change-Id: Ife5e40264f43fb3ccb40830228701003fe106bf5
Diffstat (limited to 'services/audioflinger/AudioMixerOps.h')
-rw-r--r--services/audioflinger/AudioMixerOps.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/audioflinger/AudioMixerOps.h b/services/audioflinger/AudioMixerOps.h
index 49131f6..f7376a8 100644
--- a/services/audioflinger/AudioMixerOps.h
+++ b/services/audioflinger/AudioMixerOps.h
@@ -184,7 +184,7 @@ inline int16_t MixMul<int16_t, float, float>(float value, float volume) {
template <typename TO, typename TI>
inline void MixAccum(TO *auxaccum, TI value) {
if (!is_same<TO, TI>::value) {
- LOG_ALWAYS_FATAL("MixAccum type not properly specialized: %d %d\n",
+ LOG_ALWAYS_FATAL("MixAccum type not properly specialized: %zu %zu\n",
sizeof(TO), sizeof(TI));
}
*auxaccum += value;