GNOME Bugzilla – Bug 561992
debug format warning during compilation of resindvdsrc.c in resindvd
Last modified: 2008-11-23 11:16:25 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:
Created attachment 123260 [details] [review] patch to fix missing formatting token
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.
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.