summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoramorales <amorales@2b0047a9-a6d8-0310-accf-f7200b2a168c>2013-02-19 11:01:42 +0000
committeramorales <amorales@2b0047a9-a6d8-0310-accf-f7200b2a168c>2013-02-19 11:01:42 +0000
commit6c421d52e7867654b5c99654b120034081878c21 (patch)
tree9f3cf6ea8c208c0bfcd218bd1df55245d8516974
parent75938da1917709c6bb470f1eb47af7476180141f (diff)
* src/mp3tl.c:
Fix format error, where frame_bits is a guint git-svn-id: https://core.fluendo.com/gstreamer/svn/trunk/gst-fluendo-mp3@2450 2b0047a9-a6d8-0310-accf-f7200b2a168c
-rw-r--r--ChangeLog5
-rw-r--r--src/mp3tl.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index bc54224..1307ac2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-02-11 Andoni Morales Alastruey <amorales@fluendo.com>
+
+ * src/mp3tl.c:
+ Fix format error, where frame_bits is a guint
+
2013-02-11 Release Maker <nomail@fluendo.com>
* configure.ac: Back to TRUNK.
diff --git a/src/mp3tl.c b/src/mp3tl.c
index f8a1d86..27cabcc 100644
--- a/src/mp3tl.c
+++ b/src/mp3tl.c
@@ -279,7 +279,7 @@ mp3tl_decode_header (mp3tl * tl, const fr_header ** ret_hdr)
* wrong in the sync */
g_assert (bs_bits_avail (tl->bs) >= HEADER_LNGTH);
- GST_DEBUG ("Frame is %d bytes (%" G_GUINT64_FORMAT " bits)",
+ GST_DEBUG ("Frame is %d bytes (%d bits)",
hdr->frame_bits / 8, hdr->frame_bits);
/* Consume the header and sync word */