From 61bc9091894062b97c93ce48375e76bccdbcc082 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 31 Mar 2013 17:37:01 +0100 Subject: [PATCH] tests: fix some printf format compiler warnings --- tests/check/elements/vorbistag.c | 2 +- tests/check/libs/video.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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); -- 2.7.4