summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-07-27 14:30:51 +0200
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-07-27 14:32:31 +0200
commit6f0da67002e3ba53aa830e56b219dbeec654f699 (patch)
tree4314d8a675507c9d2cd18705bdbb5250048202c0
parentfda35f7ac7cc181e49ce147d3a8e01171b0b9a1e (diff)
info: fix compilation on windows
Fix mismatched brackets (#625295).
-rw-r--r--gst/gstinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstinfo.c b/gst/gstinfo.c
index d84b662c5a..3126eef47b 100644
--- a/gst/gstinfo.c
+++ b/gst/gstinfo.c
@@ -953,7 +953,7 @@ gst_debug_log_default (GstDebugCategory * category, GstDebugLevel level,
static GStaticMutex win_print_mutex = G_STATIC_MUTEX_INIT;
const gint clear = FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE;
#define SET_COLOR(c) G_STMT_START { \
- if (log_file == stderr) { \
+ if (log_file == stderr) \
SetConsoleTextAttribute (GetStdHandle (STD_ERROR_HANDLE), (c)); \
} G_STMT_END
g_static_mutex_lock (&win_print_mutex);