diff --git a/ext/ogg/gstoggstream.c b/ext/ogg/gstoggstream.c index 8426e46f59..34df107be1 100644 --- a/ext/ogg/gstoggstream.c +++ b/ext/ogg/gstoggstream.c @@ -289,7 +289,7 @@ gst_ogg_stream_update_stats (GstOggStream * pad, ogg_packet * packet) if (!mappers[pad->map].get_headers_func) return; - return mappers[pad->map].update_stats_func (pad, packet); + mappers[pad->map].update_stats_func (pad, packet); } /* some generic functions */ diff --git a/gst-libs/gst/video/gstvideotimecode.c b/gst-libs/gst/video/gstvideotimecode.c index dcb9eb15cc..c89e1c45df 100644 --- a/gst-libs/gst/video/gstvideotimecode.c +++ b/gst-libs/gst/video/gstvideotimecode.c @@ -273,7 +273,7 @@ gst_video_time_code_frames_since_daily_jam (const GstVideoTimeCode * tc) void gst_video_time_code_increment_frame (GstVideoTimeCode * tc) { - return gst_video_time_code_add_frames (tc, 1); + gst_video_time_code_add_frames (tc, 1); } /**