mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
taglist: remove return void
in gst_tag_register
MSVC warns on this and the documentation about the warning says: > The compiler assumes the function returns a value of type int which is a little scary, so lets just remove the unnecessary 'return' https://bugzilla.gnome.org/show_bug.cgi?id=774293
This commit is contained in:
parent
9ae9a01fe2
commit
584da6e86c
1 changed files with 1 additions and 1 deletions
|
@ -509,7 +509,7 @@ gst_tag_register (const gchar * name, GstTagFlag flag, GType type,
|
|||
g_return_if_fail (blurb != NULL);
|
||||
g_return_if_fail (type != 0 && type != GST_TYPE_LIST);
|
||||
|
||||
return gst_tag_register_static (g_intern_string (name), flag, type,
|
||||
gst_tag_register_static (g_intern_string (name), flag, type,
|
||||
g_intern_string (nick), g_intern_string (blurb), func);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue