From: Vineeth TM Date: Tue, 15 Sep 2015 01:52:55 +0000 (+0900) Subject: check: Fix indentation X-Git-Tag: 1.6.1~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f409dd48e09df0d6197717711d02945591274c63;p=platform%2Fupstream%2Fgstreamer.git check: Fix indentation https://bugzilla.gnome.org/show_bug.cgi?id=755019 --- diff --git a/libs/gst/check/gstcheck.c b/libs/gst/check/gstcheck.c index be903ef..f019da8 100644 --- a/libs/gst/check/gstcheck.c +++ b/libs/gst/check/gstcheck.c @@ -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; }