Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2013-04-12 01:53:28 +0400
committerTim-Philipp Müller <tim@centricular.net>2013-04-12 01:55:58 +0400
commita8e7cd086005542e7e271f9a01105b965d21646c (patch)
treeadce8f7430e67fa357d6bf4b0f9a9d41ee5fabfe /tests/check/elements/id3v2mux.c
parentbda2703e8838d5afea4ed73135917cca7ea7e13d (diff)
tests: fix some printf format issues in debug messages
Diffstat (limited to 'tests/check/elements/id3v2mux.c')
-rw-r--r--tests/check/elements/id3v2mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check/elements/id3v2mux.c b/tests/check/elements/id3v2mux.c
index 67e70fe00..21869e6b7 100644
--- a/tests/check/elements/id3v2mux.c
+++ b/tests/check/elements/id3v2mux.c
@@ -294,7 +294,7 @@ got_buffer (GstElement * fakesink, GstBuffer * buf, GstPad * pad,
gst_buffer_map (buf, &map, GST_MAP_READ);
- GST_LOG ("got buffer, size=%u, offset=%" G_GINT64_FORMAT, map.size, off);
+ GST_LOG ("size=%" G_GSIZE_FORMAT ", offset=%" G_GINT64_FORMAT, map.size, off);
fail_unless (GST_BUFFER_OFFSET_IS_VALID (buf));