tests: fix some printf format compiler warnings

This commit is contained in:
Tim-Philipp Müller 2013-03-31 17:37:01 +01:00
parent c3651a7905
commit 61bc909189
2 changed files with 5 additions and 5 deletions

View 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);

View 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);