From bd5fb7be260dd8a38ae069c131fae48f688bb22a Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Thu, 30 Jul 2015 15:14:13 -0400 Subject: [PATCH] validate: media-descriptor: Add comment before ignored return value As stated in the bug, this comparison failing is not a critical error, warning is enough. Add a comment so nobody thinks it's a coding error. https://bugzilla.gnome.org/review?bug=748390 --- validate/gst/validate/media-descriptor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/validate/gst/validate/media-descriptor.c b/validate/gst/validate/media-descriptor.c index 8b1de1f27b..4460f8b268 100644 --- a/validate/gst/validate/media-descriptor.c +++ b/validate/gst/validate/media-descriptor.c @@ -303,6 +303,7 @@ compare_streams (GstMediaDescriptor * ref, StreamNode * rstream, return 0; } + /* We ignore the return value on purpose as this is not critical */ compare_tags (ref, rstream, cstream); return 1;