info: fix compilation on windows
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Tue, 27 Jul 2010 12:30:51 +0000 (14:30 +0200)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Tue, 27 Jul 2010 12:32:31 +0000 (14:32 +0200)
Fix mismatched brackets (#625295).

gst/gstinfo.c

index d84b662..3126eef 100644 (file)
@@ -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);