summaryrefslogtreecommitdiffstats
path: root/vm/alloc/HeapBitmap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vm/alloc/HeapBitmap.cpp')
-rw-r--r--vm/alloc/HeapBitmap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/alloc/HeapBitmap.cpp b/vm/alloc/HeapBitmap.cpp
index 8b6528717..d6a737b2a 100644
--- a/vm/alloc/HeapBitmap.cpp
+++ b/vm/alloc/HeapBitmap.cpp
@@ -34,7 +34,7 @@ bool dvmHeapBitmapInit(HeapBitmap *hb, const void *base, size_t maxSize,
bitsLen = HB_OFFSET_TO_INDEX(maxSize) * sizeof(*hb->bits);
bits = dvmAllocRegion(bitsLen, PROT_READ | PROT_WRITE, name);
if (bits == NULL) {
- LOGE("Could not mmap %zd-byte ashmem region '%s'", bitsLen, name);
+ ALOGE("Could not mmap %zd-byte ashmem region '%s'", bitsLen, name);
return false;
}
hb->bits = (unsigned long *)bits;