Remove 'return' from void functions

https://bugzilla.gnome.org/show_bug.cgi?id=774293
This commit is contained in:
Scott D Phillips 2016-11-11 10:35:00 -08:00 committed by Sebastian Dröge
parent 9ce939a9ae
commit ab3c8caeed
2 changed files with 2 additions and 2 deletions

View file

@ -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 */

View file

@ -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);
}
/**