tests: fix some printf format compiler warnings
authorTim-Philipp Müller <tim@centricular.net>
Sun, 31 Mar 2013 16:37:01 +0000 (17:37 +0100)
committerTim-Philipp Müller <tim@centricular.net>
Sun, 31 Mar 2013 16:37:36 +0000 (17:37 +0100)
tests/check/elements/vorbistag.c
tests/check/libs/video.c

index 149871e..9db10c8 100644 (file)
@@ -217,7 +217,7 @@ _create_audio_buffer (void)
   vorbis_bitrate_flushpacket (&vd, &packet);
   buffer = gst_buffer_new_and_alloc (packet.bytes);
   gst_buffer_fill (buffer, 0, packet.packet, packet.bytes);
-  GST_DEBUG ("%p %d", packet.packet, packet.bytes);
+  GST_DEBUG ("%p %ld", packet.packet, packet.bytes);
 
   vorbis_comment_clear (&vc);
   vorbis_block_clear (&vb);
index 3f7d160..abbab19 100644 (file)
@@ -551,10 +551,10 @@ GST_START_TEST (test_video_formats)
         off1 = GST_VIDEO_INFO_COMP_OFFSET (&vinfo, 1);
         off2 = GST_VIDEO_INFO_COMP_OFFSET (&vinfo, 2);
 
-        GST_INFO ("size %d <> %d", size, paintinfo.endptr);
-        GST_INFO ("off0 %d <> %d", off0, paintinfo.yp);
-        GST_INFO ("off1 %d <> %d", off1, paintinfo.up);
-        GST_INFO ("off2 %d <> %d", off2, paintinfo.vp);
+        GST_INFO ("size %d <> %d", size, (int) ((guintptr) paintinfo.endptr));
+        GST_INFO ("off0 %d <> %d", off0, (int) ((guintptr) paintinfo.yp));
+        GST_INFO ("off1 %d <> %d", off1, (int) ((guintptr) paintinfo.up));
+        GST_INFO ("off2 %d <> %d", off2, (int) ((guintptr) paintinfo.vp));
 
         fail_unless_equals_int (size, (unsigned long) paintinfo.endptr);
         fail_unless_equals_int (off0, (unsigned long) paintinfo.yp);