summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2013-08-20 00:26:06 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2013-08-20 00:26:06 +0100
commit1648c0ba6a26ee8665ff94f31e5b2df750cdc2ea (patch)
treea6b2d2edf938b3e2203e6b3f9c2c332aa33604ee /tests
parent2e5b1d1cacb634e1ce9396f107d2b3c92bd784d3 (diff)
downloadgstreamer-plugins-bad-1648c0ba6a26ee8665ff94f31e5b2df750cdc2ea.tar.gz
test: fix compiler warning in aiffparse test on 32-bit x86
Diffstat (limited to 'tests')
-rw-r--r--tests/check/elements/aiffparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check/elements/aiffparse.c b/tests/check/elements/aiffparse.c
index b5a598fa5..ebf2028c6 100644
--- a/tests/check/elements/aiffparse.c
+++ b/tests/check/elements/aiffparse.c
@@ -35,7 +35,7 @@ static GMainLoop *loop = NULL;
static gboolean have_eos = FALSE;
static gboolean have_tags = FALSE;
static gchar *data = NULL;
-static guint64 data_size = 0;
+static gsize data_size = 0;
static guint64 data_read = 0;
static guint64 data_offset = 0;