From 25a89e771aae292193244852166564e83e36232b Mon Sep 17 00:00:00 2001 From: Steve Block Date: Fri, 28 Oct 2011 15:36:41 +0100 Subject: [PATCH] Fix build Change-Id: Icbe57024e6018600d47a68132f53f15d7602dc92 --- include/cutils/log.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/cutils/log.h b/include/cutils/log.h index 42d738296..5a7c2e1cc 100644 --- a/include/cutils/log.h +++ b/include/cutils/log.h @@ -79,6 +79,7 @@ extern "C" { #else #define LOGV(...) ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) #endif +#define ALOGV LOGV #endif #define CONDITION(cond) (__builtin_expect((cond)!=0, 0)) @@ -92,6 +93,7 @@ extern "C" { ? ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \ : (void)0 ) #endif +#define ALOGV_IF LOGV_IF #endif /* @@ -162,6 +164,7 @@ extern "C" { #else #define IF_LOGV() IF_LOG(LOG_VERBOSE, LOG_TAG) #endif +#define IF_ALOGV IF_LOGV #endif /*