summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto96 <albertoguanti@gmail.com>2015-11-14 19:45:41 +0100
committerAndreas Schneider <asn@cryptomilk.org>2016-01-04 08:44:47 +0100
commita077e107ee69a21f77bb667d57654e59b395dca0 (patch)
tree64dd515e2d6458f4398eafb19a280d41b764a048
parent4aa4ddb06d3dc5ac4ea741ebcf1d312d6fcfdccb (diff)
downloadandroid_hardware_samsung_slsi_exynos5430-a077e107ee69a21f77bb667d57654e59b395dca0.tar.gz
android_hardware_samsung_slsi_exynos5430-a077e107ee69a21f77bb667d57654e59b395dca0.tar.xz
android_hardware_samsung_slsi_exynos5430-a077e107ee69a21f77bb667d57654e59b395dca0.zip
mobicore: Fix compilation error
Change-Id: If287cfa748280a370150d129d0877fb8174ade22
-rw-r--r--mobicore/common/LogWrapper/log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobicore/common/LogWrapper/log.h b/mobicore/common/LogWrapper/log.h
index 4b8b5e8..7d904f5 100644
--- a/mobicore/common/LogWrapper/log.h
+++ b/mobicore/common/LogWrapper/log.h
@@ -133,7 +133,7 @@
do \
{ \
_LOG_E(" *****************************"); \
- _LOG_E(" *** ERROR: " __VA_ARGS__); \
+ _LOG_E(" *** ERROR: ", __VA_ARGS__); \
_LOG_E(" *** Detected in %s/%u()", __FUNCTION__, __LINE__); \
_LOG_E(" *****************************"); \
} while(1!=1)