Fix the coding rule
[platform/core/connectivity/bluetooth-frwk.git] / bt-core / include / bt-core-common.h
index b1bf5e6..9d512a9 100755 (executable)
@@ -36,11 +36,11 @@ extern "C" {
 #define LOG_COLOR_PURPLE   "\033[35m"
 
 #define BT_DBG(fmt, args...) \
-        SLOGD(fmt, ##args)
+       SLOGD(fmt, ##args)
 #define BT_INFO(fmt, args...) \
        SLOGI(fmt, ##args)
 #define BT_ERR(fmt, args...) \
-        SLOGE(fmt, ##args)
+       SLOGE(fmt, ##args)
 
 #define BT_INFO_C(fmt, arg...) \
        SLOGI_IF(TRUE,  LOG_COLOR_GREEN" "fmt" "LOG_COLOR_RESET, ##arg)
@@ -82,10 +82,10 @@ extern "C" {
 
 #define BT_ALLOC_PARAMS(IP1, IP2, IP3, IP4, OP) \
        do { \
-               IP1 = g_array_new(TRUE, TRUE, sizeof(gchar));   \
-               IP2 = g_array_new(TRUE, TRUE, sizeof(gchar));   \
-               IP3 = g_array_new(TRUE, TRUE, sizeof(gchar));   \
-               IP4 = g_array_new(TRUE, TRUE, sizeof(gchar));   \
+               IP1 = g_array_new(TRUE, TRUE, sizeof(gchar));   \
+               IP2 = g_array_new(TRUE, TRUE, sizeof(gchar));   \
+               IP3 = g_array_new(TRUE, TRUE, sizeof(gchar));   \
+               IP4 = g_array_new(TRUE, TRUE, sizeof(gchar));   \
        } while (0)
 
 #ifdef __cplusplus