From f45bbe496fbb606678408733f13e17e951b12ebe Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Mon, 9 Feb 2015 16:13:33 -0800 Subject: [PATCH] log.h: Fix typo Change-Id: I6b5e9bc9d40e5e5ecf9f50f7392675391e6f18e6 --- include/log/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/log/log.h b/include/log/log.h index d95bf1a31..99015db9c 100644 --- a/include/log/log.h +++ b/include/log/log.h @@ -548,7 +548,7 @@ typedef enum { * IF_ALOG as a convenient means to reimplement their policy * over Android. */ -#if LOG_NDEBUG /* Production *? +#if LOG_NDEBUG /* Production */ #define android_testLog(prio, tag) \ (__android_log_is_loggable(prio, tag, ANDROID_LOG_DEBUG) != 0) #else