summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2011-07-08 14:06:24 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-07-08 14:06:24 -0700
commit6c21234e3d254fc58227cd2063500a0dcd173689 (patch)
treebd889dcd6c3169089f63932ecbe1f890f30e8c48 /services
parent9b186a44051d0ef7f4ca67150f204299b15a448e (diff)
parent5159c7ec97b575c0486159f0543d2da90c3c3b68 (diff)
downloadframeworks_av-6c21234e3d254fc58227cd2063500a0dcd173689.zip
frameworks_av-6c21234e3d254fc58227cd2063500a0dcd173689.tar.gz
frameworks_av-6c21234e3d254fc58227cd2063500a0dcd173689.tar.bz2
Merge "Fix build warning; LOG_TAG was misplaced"
Diffstat (limited to 'services')
-rw-r--r--services/audioflinger/AudioResamplerCubic.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/audioflinger/AudioResamplerCubic.cpp b/services/audioflinger/AudioResamplerCubic.cpp
index 1d247bd..4d721f6 100644
--- a/services/audioflinger/AudioResamplerCubic.cpp
+++ b/services/audioflinger/AudioResamplerCubic.cpp
@@ -14,6 +14,8 @@
* limitations under the License.
*/
+#define LOG_TAG "AudioSRC"
+
#include <stdint.h>
#include <string.h>
#include <sys/types.h>
@@ -22,8 +24,6 @@
#include "AudioResampler.h"
#include "AudioResamplerCubic.h"
-#define LOG_TAG "AudioSRC"
-
namespace android {
// ----------------------------------------------------------------------------