From 3a70625caf816c6506b09f5a574fae4f8cb37386 Mon Sep 17 00:00:00 2001 From: "bjornv@webrtc.org" Date: Thu, 1 Jan 2015 22:04:12 +0000 Subject: [PATCH] audio_processing: Added back ATTRIBUTE_UNUSED lost in r7877 BUG=N/A TESTED=Now it builds with aec_debug_dump=1 on Mac TBR=pbos@webrtc.org Review URL: https://webrtc-codereview.appspot.com/35629004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7986 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/audio_processing/aec/aec_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/modules/audio_processing/aec/aec_core.c b/webrtc/modules/audio_processing/aec/aec_core.c index d2d55ec93..61f9e5653 100644 --- a/webrtc/modules/audio_processing/aec/aec_core.c +++ b/webrtc/modules/audio_processing/aec/aec_core.c @@ -1424,7 +1424,7 @@ static void ReopenWav(rtc_WavWriter** wav_file, int seq1, int seq2, int sample_rate) { - int written UNUSED; + int written ATTRIBUTE_UNUSED; char filename[64]; if (*wav_file) { if (rtc_WavSampleRate(*wav_file) == sample_rate)