summaryrefslogtreecommitdiffstats
path: root/libs/binder/CursorWindow.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-05 23:22:43 +0000
committerJean-Baptiste Queru <jbq@google.com>2012-01-19 14:44:59 -0800
commita51f0e707f1f3142358aa919ea60ad2842803139 (patch)
tree3a4bea403affd07f7611fe13da8cbf64a61ee3e3 /libs/binder/CursorWindow.cpp
parent933e85615059b85a87747da57288384541cc56da (diff)
downloadframeworks_base-a51f0e707f1f3142358aa919ea60ad2842803139.zip
frameworks_base-a51f0e707f1f3142358aa919ea60ad2842803139.tar.gz
frameworks_base-a51f0e707f1f3142358aa919ea60ad2842803139.tar.bz2
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF)
Change-Id: I8fbdfa7a7581f481968dbb65aa40f7042936d7cb
Diffstat (limited to 'libs/binder/CursorWindow.cpp')
-rw-r--r--libs/binder/CursorWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/CursorWindow.cpp b/libs/binder/CursorWindow.cpp
index 0733378..19b7631 100644
--- a/libs/binder/CursorWindow.cpp
+++ b/libs/binder/CursorWindow.cpp
@@ -209,7 +209,7 @@ uint32_t CursorWindow::alloc(size_t size, bool aligned) {
uint32_t offset = mHeader->freeOffset + padding;
uint32_t nextFreeOffset = offset + size;
if (nextFreeOffset > mSize) {
- LOGW("Window is full: requested allocation %d bytes, "
+ ALOGW("Window is full: requested allocation %d bytes, "
"free space %d bytes, window size %d bytes",
size, freeSpace(), mSize);
return 0;