summaryrefslogtreecommitdiffstats
path: root/modules/gralloc/gralloc.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-08 10:17:53 +0000
committerSteve Block <steveblock@google.com>2012-01-08 11:03:25 +0000
commit60d056bf2926357260592409dee31374fa8e301b (patch)
tree9b55c71742bd4961b6f1ca7451798b8afd175648 /modules/gralloc/gralloc.cpp
parentf678d4745081038659a72b7c581e00612647f25d (diff)
downloadhardware_libhardware-60d056bf2926357260592409dee31374fa8e301b.zip
hardware_libhardware-60d056bf2926357260592409dee31374fa8e301b.tar.gz
hardware_libhardware-60d056bf2926357260592409dee31374fa8e301b.tar.bz2
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: I0cbe865d464a37365fa3be84948b07e5a0d181d0
Diffstat (limited to 'modules/gralloc/gralloc.cpp')
-rw-r--r--modules/gralloc/gralloc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gralloc/gralloc.cpp b/modules/gralloc/gralloc.cpp
index dcd2e2b..a6b4edd 100644
--- a/modules/gralloc/gralloc.cpp
+++ b/modules/gralloc/gralloc.cpp
@@ -175,7 +175,7 @@ static int gralloc_alloc_buffer(alloc_device_t* dev,
fd = ashmem_create_region("gralloc-buffer", size);
if (fd < 0) {
- LOGE("couldn't create ashmem (%s)", strerror(-errno));
+ ALOGE("couldn't create ashmem (%s)", strerror(-errno));
err = -errno;
}
@@ -189,7 +189,7 @@ static int gralloc_alloc_buffer(alloc_device_t* dev,
}
}
- LOGE_IF(err, "gralloc failed err=%s", strerror(-err));
+ ALOGE_IF(err, "gralloc failed err=%s", strerror(-err));
return err;
}