summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2013-08-08 00:15:01 +0530
committerAmit Pundir <amit.pundir@linaro.org>2013-08-08 00:15:48 +0530
commit0bbf51b19f51b6302b0f356a3c40668b4a8cc22d (patch)
treec99c86f901f000f78aabbada1083a61d24efe6d3
parent0ecbc4b34086af53a481b7b3978b2e3ef8a12a08 (diff)
downloadlibhardware-linaro_android_4.3_juice.tar.gz
gralloc: fix a typo in last commitlinaro_android_4.3_juice
Change-Id: I08c02156d2bfd46a72aa393df8794fabc86888b9 Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
-rw-r--r--modules/gralloc/framebuffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gralloc/framebuffer.cpp b/modules/gralloc/framebuffer.cpp
index a1ded497..b7ba3b1a 100644
--- a/modules/gralloc/framebuffer.cpp
+++ b/modules/gralloc/framebuffer.cpp
@@ -98,7 +98,7 @@ static int fb_post(struct framebuffer_device_t* dev, buffer_handle_t buffer)
m->info.activate = FB_ACTIVATE_VBL;
m->info.yoffset = offset / m->finfo.line_length;
if (ioctl(m->framebuffer->fd, FBIOPAN_DISPLAY, &m->info) == -1) {
- LOGE("FBIOPAN_DISPLAY failed");
+ ALOGE("FBIOPAN_DISPLAY failed");
m->base.unlock(&m->base, buffer);
return -errno;
}