From 3b10871a8756379383928b5fddd3011cae4c22ec Mon Sep 17 00:00:00 2001 From: Josep Torra Date: Sat, 30 Mar 2013 09:39:32 +0100 Subject: [PATCH] xvimagesink: fix debug message printf format compiler warning --- sys/xvimage/xvimageallocator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/xvimage/xvimageallocator.c b/sys/xvimage/xvimageallocator.c index 0fefcfd..3aa1a82 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); } -- 2.7.4