summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosep Torra <n770galaxy@gmail.com>2013-03-10 18:52:36 +0100
committerJosep Torra <n770galaxy@gmail.com>2013-03-10 18:52:36 +0100
commit2954189415489f61b4c297af22d77b234dfae70a (patch)
treeaec86476f8ab38685982241c1b2b907d44e3f0eb
parentd76b776e8d152159b187a9641977fc84006997ff (diff)
downloadgstreamer-plugins-good-2954189415489f61b4c297af22d77b234dfae70a.tar.gz
png: Use correct print format specifier to fix a compiler warning
-rw-r--r--ext/libpng/gstpngdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/libpng/gstpngdec.c b/ext/libpng/gstpngdec.c
index 4505be38f..a1638c377 100644
--- a/ext/libpng/gstpngdec.c
+++ b/ext/libpng/gstpngdec.c
@@ -149,7 +149,7 @@ user_info_callback (png_structp png_ptr, png_infop info)
pngdec->rowbytes = GST_ROUND_UP_4 (pngdec->rowbytes);
buffer_size = height * pngdec->rowbytes;
- GST_DEBUG ("Allocating a buffer of %d bytes", buffer_size);
+ GST_DEBUG ("Allocating a buffer of %" G_GSIZE_FORMAT " bytes", buffer_size);
g_assert (pngdec->buffer_out == NULL);
pngdec->buffer_out = pngdec->current_frame->output_buffer =