summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJosep Torra <n770galaxy@gmail.com>2013-03-30 09:39:32 +0100
committerJosep Torra <n770galaxy@gmail.com>2013-03-30 09:39:32 +0100
commit3b10871a8756379383928b5fddd3011cae4c22ec (patch)
tree38ed07a6340f2b8fbdc176cc352793b036b4081a /sys
parentfbf2647f3e4f1f8cdfa38edd1c3bf0b4d7a9a4e5 (diff)
xvimagesink: fix debug message printf format compiler warning
Diffstat (limited to 'sys')
-rw-r--r--sys/xvimage/xvimageallocator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/xvimage/xvimageallocator.c b/sys/xvimage/xvimageallocator.c
index 0fefcfda8..3aa1a8222 100644
--- a/sys/xvimage/xvimageallocator.c
+++ b/sys/xvimage/xvimageallocator.c
@@ -437,7 +437,7 @@ gst_xvimage_allocator_alloc (GstXvImageAllocator * allocator, gint im_format,
}
if (expected_size != 0 && mem->xvimage->data_size != expected_size) {
GST_WARNING_OBJECT (allocator,
- "unexpected XShm image size (got %" G_GSIZE_FORMAT ", expected %d)",
+ "unexpected XShm image size (got %d, expected %d)",
mem->xvimage->data_size, expected_size);
}