From 8c28155848042bfdece32c02a91bc545c08f1da2 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Mon, 25 Jan 2010 00:45:52 +0000 Subject: Fix gcc warnings. svn-id: r47535 --- test/sound/timestamp.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/sound/timestamp.h') diff --git a/test/sound/timestamp.h b/test/sound/timestamp.h index d78e58a0cc..dd47946dd5 100644 --- a/test/sound/timestamp.h +++ b/test/sound/timestamp.h @@ -212,10 +212,10 @@ class TimestampTestSuite : public CxxTest::TestSuite const Audio::Timestamp c = Audio::Timestamp(500, 100); const Audio::Timestamp d = Audio::Timestamp(500, 44100); - TS_ASSERT_EQUALS(a.framerate(), 1000); - TS_ASSERT_EQUALS(b.framerate(), 67); - TS_ASSERT_EQUALS(c.framerate(), 100); - TS_ASSERT_EQUALS(d.framerate(), 44100); + TS_ASSERT_EQUALS(a.framerate(), (uint)1000); + TS_ASSERT_EQUALS(b.framerate(), (uint)67); + TS_ASSERT_EQUALS(c.framerate(), (uint)100); + TS_ASSERT_EQUALS(d.framerate(), (uint)44100); } void test_direct_query() { -- cgit v1.2.3