From 87327110c211163958be45e7b06ff1ebc8c805c1 Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Wed, 19 May 2021 16:23:43 +0900 Subject: [PATCH] videoaggregator: Don't try to return void warning C4098: 'gst_video_aggregator_parallel_convert_pad_finalize': 'void' function returning a value Part-of: --- gst-libs/gst/video/gstvideoaggregator.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gst-libs/gst/video/gstvideoaggregator.c b/gst-libs/gst/video/gstvideoaggregator.c index 7cd9ee1aa1..6d8b1a9a96 100644 --- a/gst-libs/gst/video/gstvideoaggregator.c +++ b/gst-libs/gst/video/gstvideoaggregator.c @@ -900,8 +900,7 @@ gst_video_aggregator_parallel_convert_pad_finalize (GObject * object) } } - return - G_OBJECT_CLASS + G_OBJECT_CLASS (gst_video_aggregator_parallel_convert_pad_parent_class)->finalize (object); }