summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-08 10:37:59 +0000
committerSteve Block <steveblock@google.com>2012-01-08 10:41:35 +0000
commitb47c7beddecd38ae565d84b72da526843bfdd43e (patch)
tree045abeb60047736793a0c0dbd655b7954724a456 /tests
parenta6c69c7e1665b38da8d6784e65210acbe501b92c (diff)
downloadandroid_frameworks_wilhelm-b47c7beddecd38ae565d84b72da526843bfdd43e.tar.gz
android_frameworks_wilhelm-b47c7beddecd38ae565d84b72da526843bfdd43e.tar.bz2
android_frameworks_wilhelm-b47c7beddecd38ae565d84b72da526843bfdd43e.zip
Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/157220 Bug: 5449033 Change-Id: I584e6f6a3c52308b7a5a5c9980ca429c831f4320
Diffstat (limited to 'tests')
-rw-r--r--tests/native-media/jni/native-media-jni.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/native-media/jni/native-media-jni.c b/tests/native-media/jni/native-media-jni.c
index 2dbe295..a43cb9e 100644
--- a/tests/native-media/jni/native-media-jni.c
+++ b/tests/native-media/jni/native-media-jni.c
@@ -301,7 +301,7 @@ static jboolean enqueueInitialBuffers(jboolean discontinuity)
nbRead = fread(dataCache, BUFFER_SIZE, NB_BUFFERS, file);
if (nbRead <= 0) {
// could be premature EOF or I/O error
- LOGE("Error filling cache, exiting\n");
+ ALOGE("Error filling cache, exiting\n");
return JNI_FALSE;
}
assert(1 <= nbRead && nbRead <= NB_BUFFERS);
@@ -349,7 +349,7 @@ jboolean Java_com_example_nativemedia_NativeMedia_createStreamingMediaPlayer(JNI
// open the file to play
file = fopen(utf8, "rb");
if (file == NULL) {
- LOGE("Failed to open %s", utf8);
+ ALOGE("Failed to open %s", utf8);
return JNI_FALSE;
}