check: Fix indentation
authorVineeth TM <vineeth.tm@samsung.com>
Tue, 15 Sep 2015 01:52:55 +0000 (10:52 +0900)
committerTim-Philipp Müller <tim@centricular.com>
Tue, 15 Sep 2015 17:21:27 +0000 (18:21 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=755019

libs/gst/check/gstcheck.c

index be903ef..f019da8 100644 (file)
@@ -1015,17 +1015,16 @@ gst_check_object_destroyed_on_unref (gpointer object_to_unref)
 
 /* For ABI compatibility with GStreamer < 1.5 */
 void
-_fail_unless (int result, const char *file, int line, const char *expr, ...)
-G_GNUC_PRINTF (4, 5);
+_fail_unless (int result, const char *file, int line, const char *expr, ...);
 
-void _fail_unless (int result, const char *file, int line,
-    const char *expr, ...)
+void
+_fail_unless (int result, const char *file, int line, const char *expr, ...)
 {
   gchar *msg;
   va_list args;
 
   if (result) {
-    _mark_point(file, line);
+    _mark_point (file, line);
     return;
   }