/* These defines must be located before #include <dlog.h> */
#define TIZEN_ENGINEER_MODE
-// TODO: Investigate why this macro is defined somewhere else
+/* TODO: Investigate why this macro is defined somewhere else */
#ifndef TIZEN_DEBUG_ENABLE
#define TIZEN_DEBUG_ENABLE
#endif
* @param[out] val Value to be returned when expression is true
*/
#define auth_plugin_sample_retv_if(expr, val) do { \
- if(expr) { \
+ if (expr) { \
LOGE(FONT_COLOR_PURPLE"[%d]"FONT_COLOR_RESET, auth_plugin_sample_gettid()); \
return (val); \
} \
* @param[in] args Arguments to be displayed
*/
#define auth_plugin_sample_info(fmt, arg...) do { \
- LOGI(FONT_COLOR_BLUE"[%d]"fmt""FONT_COLOR_RESET, auth_plugin_sample_gettid() ,##arg); \
+ LOGI(FONT_COLOR_BLUE"[%d]"fmt""FONT_COLOR_RESET, auth_plugin_sample_gettid(), ##arg); \
} while (0)
/**
/* These defines must be located before #include <dlog.h> */
#define TIZEN_ENGINEER_MODE
-// TODO: Investigate why this macro is defined somewhere else
+/* TODO: Investigate why this macro is defined somewhere else */
#ifndef TIZEN_DEBUG_ENABLE
#define TIZEN_DEBUG_ENABLE
#endif
* @param[out] val Value to be returned when expression is true
*/
#define storage_plugin_sample_retv_if(expr, val) do { \
- if(expr) { \
+ if (expr) { \
LOGE(FONT_COLOR_PURPLE"[%d]"FONT_COLOR_RESET, storage_plugin_sample_gettid()); \
return (val); \
} \
* @param[in] args Arguments to be displayed
*/
#define storage_plugin_sample_info(fmt, arg...) do { \
- LOGI(FONT_COLOR_BLUE"[%d]"fmt""FONT_COLOR_RESET, storage_plugin_sample_gettid() ,##arg); \
+ LOGI(FONT_COLOR_BLUE"[%d]"fmt""FONT_COLOR_RESET, storage_plugin_sample_gettid(), ##arg); \
} while (0)
/**