From: Josep Torra Date: Sat, 30 Mar 2013 08:39:32 +0000 (+0100) Subject: xvimagesink: fix debug message printf format compiler warning X-Git-Tag: 1.1.1~242 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b10871a8756379383928b5fddd3011cae4c22ec;p=platform%2Fupstream%2Fgst-plugins-base.git xvimagesink: fix debug message printf format compiler warning --- 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); }