GNOME Bugzilla – Bug 666926
Build failure in lame plugin
Last modified: 2011-12-27 22:55:38 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);
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