From f020c41d41358af35da09ce5127c722df1d9845e Mon Sep 17 00:00:00 2001 From: Vineeth TM Date: Wed, 22 Jul 2015 16:07:19 +0900 Subject: [PATCH] validate: media-descriptor: fix trivial spelling mistakes replace comparse_stream with compare_streams https://bugzilla.gnome.org/show_bug.cgi?id=748390 --- validate/gst/validate/media-descriptor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validate/gst/validate/media-descriptor.c b/validate/gst/validate/media-descriptor.c index 93f4bc295c..8ac7524006 100644 --- a/validate/gst/validate/media-descriptor.c +++ b/validate/gst/validate/media-descriptor.c @@ -287,7 +287,7 @@ compare_tags (GstMediaDescriptor * ref, StreamNode * rstream, /* Return -1 if not found 1 if OK 0 if an error occured */ static gint -comparse_stream (GstMediaDescriptor * ref, StreamNode * rstream, +compare_streams (GstMediaDescriptor * ref, StreamNode * rstream, StreamNode * cstream) { if (g_strcmp0 (rstream->id, cstream->id) == 0) { @@ -349,7 +349,7 @@ gst_media_descriptors_compare (GstMediaDescriptor * ref, for (cstream_list = cfilenode->streams; cstream_list; cstream_list = cstream_list->next) { - sfound = comparse_stream (ref, rstream_list->data, cstream_list->data); + sfound = compare_streams (ref, rstream_list->data, cstream_list->data); if (sfound == 0) { return FALSE; } else if (sfound == 1) {