mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 01:45:33 +00:00
check: Fix indentation
https://bugzilla.gnome.org/show_bug.cgi?id=755019
This commit is contained in:
parent
366680ee59
commit
f409dd48e0
1 changed files with 4 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue