From 3762c311729fe9f3af085c14c5c1fb471d994c03 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Fri, 6 Jan 2012 19:20:56 +0000 Subject: 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: Ic9c19d30693bd56755f55906127cd6bd7126096c --- native/android/looper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'native/android/looper.cpp') diff --git a/native/android/looper.cpp b/native/android/looper.cpp index 615493fe9a6c..455e950da033 100644 --- a/native/android/looper.cpp +++ b/native/android/looper.cpp @@ -44,7 +44,7 @@ void ALooper_release(ALooper* looper) { int ALooper_pollOnce(int timeoutMillis, int* outFd, int* outEvents, void** outData) { sp looper = Looper::getForThread(); if (looper == NULL) { - LOGE("ALooper_pollOnce: No looper for this thread!"); + ALOGE("ALooper_pollOnce: No looper for this thread!"); return ALOOPER_POLL_ERROR; } @@ -55,7 +55,7 @@ int ALooper_pollOnce(int timeoutMillis, int* outFd, int* outEvents, void** outDa int ALooper_pollAll(int timeoutMillis, int* outFd, int* outEvents, void** outData) { sp looper = Looper::getForThread(); if (looper == NULL) { - LOGE("ALooper_pollAll: No looper for this thread!"); + ALOGE("ALooper_pollAll: No looper for this thread!"); return ALOOPER_POLL_ERROR; } -- cgit v1.2.3-59-g8ed1b