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 666926 - Build failure in lame plugin
Build failure in lame plugin
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-ugly
git master
Other Windows
: Normal normal
: 0.10.20
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2011-12-27 22:29 UTC by LRN
Modified: 2011-12-27 22:55 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description LRN 2011-12-27 22:29:07 UTC
gstlame.c: In function 'gst_lame_finish_frames':
gstlame.c:1121:7: error: too many arguments for format

The offending lines are:

      GST_DEBUG_OBJECT (lame,
          "unexpected mp3 header with (rate, layer): (%u, %u)",
          rate, version, layer);

The fix is obvious:

      GST_DEBUG_OBJECT (lame,
          "unexpected mp3 header with (rate, version, layer): (%u, %u, %u)",
          rate, version, layer);
Comment 1 Tim-Philipp Müller 2011-12-27 22:55:38 UTC
commit 769e84cfe8abae70a4902ca3303a3711a91438bf
Author: Tim-Philipp Müller <tim.muller@collabora.co.uk>
Date:   Tue Dec 27 22:54:34 2011 +0000

    lame: fix printf format in debug statements
    
    https://bugzilla.gnome.org/show_bug.cgi?id=666926