diff options
author | Raimo Järvi <raimo.jarvi@gmail.com> | 2012-05-05 20:01:46 +0300 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2012-05-05 19:45:42 +0100 |
commit | 93ad7a4d06db89bae40ab6bfa5b1b7a2e614d268 (patch) | |
tree | 3ca7f68a28e7d7ba795124ec5e8d1c2850079b3d /gst/camerabin2 | |
parent | b87f7345db2c998e37eae350ad880a2bb0d0f4cd (diff) | |
download | gstreamer-plugins-bad-93ad7a4d06db89bae40ab6bfa5b1b7a2e614d268.tar.gz |
Fix printf format compiler warnings on mingw-w64
https://bugzilla.gnome.org/show_bug.cgi?id=675520
Diffstat (limited to 'gst/camerabin2')
-rw-r--r-- | gst/camerabin2/gstwrappercamerabinsrc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/camerabin2/gstwrappercamerabinsrc.c b/gst/camerabin2/gstwrappercamerabinsrc.c index f6dcabf1f..3a4bab6f8 100644 --- a/gst/camerabin2/gstwrappercamerabinsrc.c +++ b/gst/camerabin2/gstwrappercamerabinsrc.c @@ -199,8 +199,9 @@ gst_wrapper_camera_bin_src_imgsrc_probe (GstPad * pad, GstPadProbeInfo * info, GstBuffer *buffer = GST_BUFFER (info->data); GstPadProbeReturn ret = GST_PAD_PROBE_DROP; - GST_LOG_OBJECT (self, "Image probe, mode %d, capture count %d bufsize: %u", - camerasrc->mode, self->image_capture_count, gst_buffer_get_size (buffer)); + GST_LOG_OBJECT (self, "Image probe, mode %d, capture count %d bufsize: %" + G_GSIZE_FORMAT, camerasrc->mode, self->image_capture_count, + gst_buffer_get_size (buffer)); g_mutex_lock (&camerasrc->capturing_mutex); if (self->image_capture_count > 0) { |