Fix indent
[platform/upstream/pulseaudio.git] / src / pulsecore / log.c
index 52fcd19..21f3703 100644 (file)
 
 #ifdef USE_DLOG
 #include <dlog.h>
-#define        DLOG_TAG        "PULSEAUDIO"
-
-#define COLOR_BLACK            30
-#define COLOR_RED              31
-#define COLOR_GREEN            32
-#define COLOR_BLUE             34
-#define COLOR_MAGENTA          35
-#define COLOR_CYAN             36
-#define COLOR_WHITE            97
-#define COLOR_B_GRAY           100
-#define COLOR_B_RED            101
-#define COLOR_B_GREEN          102
-#define COLOR_B_YELLOW         103
-#define COLOR_B_BLUE           104
-#define COLOR_B_MAGENTA        105
-#define COLOR_B_CYAN           106
-#define COLOR_REVERSE          7
+#define DLOG_TAG        "PULSEAUDIO"
+
+#define COLOR_BLACK     30
+#define COLOR_RED       31
+#define COLOR_GREEN     32
+#define COLOR_BLUE      34
+#define COLOR_MAGENTA   35
+#define COLOR_CYAN      36
+#define COLOR_WHITE     97
+#define COLOR_B_GRAY    100
+#define COLOR_B_RED     101
+#define COLOR_B_GREEN   102
+#define COLOR_B_YELLOW  103
+#define COLOR_B_BLUE    104
+#define COLOR_B_MAGENTA 105
+#define COLOR_B_CYAN    106
+#define COLOR_REVERSE   7
 
 #endif
 #define ENV_LOG_SYSLOG "PULSE_LOG_SYSLOG"
@@ -586,7 +586,7 @@ void pa_log_levelv_meta(
                                                SLOG (LOG_DEBUG, DLOG_TAG, "%s%s%s%s",  timestamp, location, t, pa_strempty(bt));
                                                break;
                                        case PA_LOG_INFO:
-                                       case PA_LOG_NOTICE:     // no notice category in dlog, use info instead.
+                                       case PA_LOG_NOTICE: /* no notice category in dlog, use info instead */
                                                SLOG (LOG_INFO, DLOG_TAG, "%s%s%s%s", timestamp, location, t, pa_strempty(bt));
                                                break;
                                        case PA_LOG_WARN:
@@ -618,7 +618,7 @@ void pa_log_levelv_meta(
                                                SLOG (LOG_DEBUG, DLOG_TAG, "\033[%dm%s%s%s%s\033[0m", COLOR_GREEN, timestamp, location, t, pa_strempty(bt));
                                                break;
                                        case PA_LOG_INFO:
-                                       case PA_LOG_NOTICE:     // no notice category in dlog, use info instead.
+                                       case PA_LOG_NOTICE: /* no notice category in dlog, use info instead */
                                                SLOG (LOG_INFO, DLOG_TAG, "\033[%dm%s%s%s%s\033[0m", COLOR_BLUE, timestamp, location, t, pa_strempty(bt));
                                                break;
                                        case PA_LOG_WARN: