summaryrefslogtreecommitdiffstats
path: root/exynos4
diff options
context:
space:
mode:
authorDominggoes Isakh <drjisakh@gmail.com>2016-12-17 17:44:32 +0100
committerEthan Chen <intervigil@gmail.com>2016-12-18 13:06:03 -0800
commitcb48f297fff3a71e335328e8c018098b0d321de5 (patch)
tree23bd67c4fc03b4f59948f0603b7dd3ce7177f58b /exynos4
parent698085880bd6b00eb371b45dc43411dbac07bc77 (diff)
downloadandroid_hardware_samsung-cb48f297fff3a71e335328e8c018098b0d321de5.tar.gz
android_hardware_samsung-cb48f297fff3a71e335328e8c018098b0d321de5.tar.bz2
android_hardware_samsung-cb48f297fff3a71e335328e8c018098b0d321de5.zip
exynos4: Fix libfimc build
* Expected return type is an address, not a boolean. Change-Id: I454c23b66388fe06fc6d630b7b510ae85bd94c4a
Diffstat (limited to 'exynos4')
-rw-r--r--exynos4/hal/libfimc/SecFimc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/exynos4/hal/libfimc/SecFimc.cpp b/exynos4/hal/libfimc/SecFimc.cpp
index a924235..a0e016d 100644
--- a/exynos4/hal/libfimc/SecFimc.cpp
+++ b/exynos4/hal/libfimc/SecFimc.cpp
@@ -751,7 +751,7 @@ SecBuffer * SecFimc::getMemAddr(int index)
{
if (mFlagCreate == false) {
ALOGE("%s::Not yet created", __func__);
- return false;
+ return NULL;
}
return &mDstBuffer[index];