[Scummvm-cvs-logs] SF.net SVN: scummvm:[47535] scummvm/trunk/test/sound/timestamp.h

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Mon Jan 25 01:45:56 CET 2010


Revision: 47535
          http://scummvm.svn.sourceforge.net/scummvm/?rev=47535&view=rev
Author:   lordhoto
Date:     2010-01-25 00:45:52 +0000 (Mon, 25 Jan 2010)

Log Message:
-----------
Fix gcc warnings.

Modified Paths:
--------------
    scummvm/trunk/test/sound/timestamp.h

Modified: scummvm/trunk/test/sound/timestamp.h
===================================================================
--- scummvm/trunk/test/sound/timestamp.h	2010-01-25 00:39:46 UTC (rev 47534)
+++ scummvm/trunk/test/sound/timestamp.h	2010-01-25 00:45:52 UTC (rev 47535)
@@ -212,10 +212,10 @@
 		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() {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list