From: Tim-Philipp Müller Date: Sun, 31 Mar 2013 16:37:01 +0000 (+0100) Subject: tests: fix some printf format compiler warnings X-Git-Tag: 1.19.3~511^2~5483 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=61bc9091894062b97c93ce48375e76bccdbcc082;p=platform%2Fupstream%2Fgstreamer.git tests: fix some printf format compiler warnings --- diff --git a/tests/check/elements/vorbistag.c b/tests/check/elements/vorbistag.c index 149871e..9db10c8 100644 --- a/tests/check/elements/vorbistag.c +++ b/tests/check/elements/vorbistag.c @@ -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); diff --git a/tests/check/libs/video.c b/tests/check/libs/video.c index 3f7d160..abbab19 100644 --- a/tests/check/libs/video.c +++ b/tests/check/libs/video.c @@ -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);