mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
mpegtsmux: basetsmux: Don't try to return value from void function
gstbasetsmux.c(1508): warning C4098: 'free_splice': 'void' function returning a value Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1018>
This commit is contained in:
parent
f54c2a2bac
commit
90e5e0efea
1 changed files with 1 additions and 1 deletions
|
@ -1505,7 +1505,7 @@ copy_splice (GstMpegtsSCTESpliceEvent * splice)
|
||||||
static void
|
static void
|
||||||
free_splice (GstMpegtsSCTESpliceEvent * splice)
|
free_splice (GstMpegtsSCTESpliceEvent * splice)
|
||||||
{
|
{
|
||||||
return g_boxed_free (GST_TYPE_MPEGTS_SCTE_SPLICE_EVENT, splice);
|
g_boxed_free (GST_TYPE_MPEGTS_SCTE_SPLICE_EVENT, splice);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FIXME: get rid of this when depending on glib >= 2.62 */
|
/* FIXME: get rid of this when depending on glib >= 2.62 */
|
||||||
|
|
Loading…
Reference in a new issue