mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-27 10:40:34 +00:00
qtdemux: fix bug report URL
Using PACKAGE_BUGREPORT as in other modules. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5786>
This commit is contained in:
parent
2c27ef8684
commit
ef734f1134
2 changed files with 3 additions and 1 deletions
|
@ -763,7 +763,8 @@ unknown_tag:
|
|||
namestr_dbg = g_strndup (namestr, namesize);
|
||||
|
||||
GST_WARNING_OBJECT (demux, "This tag %s:%s type:%u is not mapped, "
|
||||
"file a bug at bugzilla.gnome.org", meanstr_dbg, namestr_dbg, datatype);
|
||||
"file a bug at %s", meanstr_dbg, namestr_dbg, datatype,
|
||||
PACKAGE_BUGREPORT);
|
||||
|
||||
g_free (namestr_dbg);
|
||||
g_free (meanstr_dbg);
|
||||
|
|
|
@ -231,6 +231,7 @@ cdata.set_quoted('GST_LICENSE', 'LGPL')
|
|||
cdata.set_quoted('PACKAGE', 'gst-plugins-good')
|
||||
cdata.set_quoted('GETTEXT_PACKAGE', 'gst-plugins-good-1.0')
|
||||
cdata.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
|
||||
cdata.set_quoted('PACKAGE_BUGREPORT', 'https://gitlab.freedesktop.org/gstreamer/gstreamer/issues/new')
|
||||
|
||||
warning_flags = [
|
||||
'-Wmissing-declarations',
|
||||
|
|
Loading…
Reference in a new issue