Fix logging ifdefs in slp-su.c.
authorRafal Krypa <r.krypa@samsung.com>
Mon, 8 Apr 2013 13:48:07 +0000 (15:48 +0200)
committerKrzysztof Jackiewicz <k.jackiewicz@samsung.com>
Wed, 17 Apr 2013 19:35:24 +0000 (21:35 +0200)
[Issue#]       N/A
[Feature]      slp-su has logging disabled.
[Cause]        Typo.
[Solution]     Correct the typo.
[Verification] Build.

Change-Id: Ifacdc02732b39c269bdb2b880b3a472ea6c742ba

src/slp-su.c

index 24287d1..7789b3e 100644 (file)
 #endif // LOG_TAG
 
 // conditional log macro for dlogutil (debug)
-#ifdef DDLOG_DEBUG_ENABLED
+#ifdef DLOG_DEBUG_ENABLED
 #define C_LOGD(...) LOGD(__VA_ARGS__)
 #else
 #define C_LOGD(...) do { } while(0)
 #endif //DLOG_DEBUG_ENABLED
 
 // conditional log macro for dlogutil (error)
-#ifdef DDLOG_ERROR_ENABLED
+#ifdef DLOG_ERROR_ENABLED
 #define C_LOGE(...) LOGE(__VA_ARGS__)
 #else
 #define C_LOGE(...) do { } while(0)