mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
Remove 'return' from void
functions
https://bugzilla.gnome.org/show_bug.cgi?id=774293
This commit is contained in:
parent
9ce939a9ae
commit
ab3c8caeed
2 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue