After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 561992 - debug format warning during compilation of resindvdsrc.c in resindvd
debug format warning during compilation of resindvdsrc.c in resindvd
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
git master
Other All
: Normal normal
: 0.10.10
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-11-23 10:23 UTC by Tal Shalif
Modified: 2008-11-23 11:16 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
patch to fix missing formatting token (521 bytes, patch)
2008-11-23 10:24 UTC, Tal Shalif
committed Details | Review

Description Tal Shalif 2008-11-23 10:23:05 UTC
Please describe the problem:
The line 
GST_DEBUG_OBJECT (src, "Audio stream %d - no language", i, lang_code);

is missing a formatting argument for lang_code. Should be:
GST_DEBUG_OBJECT (src, "Audio stream %d - no language %s", i, lang_code);

Steps to reproduce:


Actual results:


Expected results:


Does this happen every time?


Other information:
Comment 1 Tal Shalif 2008-11-23 10:24:19 UTC
Created attachment 123260 [details] [review]
patch to fix missing formatting token
Comment 2 Sebastian Dröge (slomo) 2008-11-23 11:14:25 UTC
2008-11-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>

        Patch by: Tal Shalif <tshalif at nargila dot org>

        * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
        Use G_{BIG,LITTLE}_ENDIAN instead of the non-GLib variants as
        the latter don't exist on some systems (mingw). Fixes bug #561992.
Comment 3 Sebastian Dröge (slomo) 2008-11-23 11:16:25 UTC
Oops, wrong bug :)

2008-11-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>

        Patch by: Tal Shalif <tshalif at nargila dot org>

        * ext/resindvd/resindvdsrc.c:
        (rsn_dvdsrc_prepare_streamsinfo_event):
        Fix format string. Fixes bug #561992.