aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2010-01-25 00:45:52 +0000
committerJohannes Schickel2010-01-25 00:45:52 +0000
commit8c28155848042bfdece32c02a91bc545c08f1da2 (patch)
tree30a5256843737b148e9a513cf3ec03fc78e7b021
parentbfcdbae648d3eeee4a93bb4fb55fef8b6a326bdb (diff)
downloadscummvm-rg350-8c28155848042bfdece32c02a91bc545c08f1da2.tar.gz
scummvm-rg350-8c28155848042bfdece32c02a91bc545c08f1da2.tar.bz2
scummvm-rg350-8c28155848042bfdece32c02a91bc545c08f1da2.zip
Fix gcc warnings.
svn-id: r47535
-rw-r--r--test/sound/timestamp.h8
1 files changed, 4 insertions, 4 deletions
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() {