gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-332-g793e769
Date: Tue, 03 May 2011 20:58:39 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  793e769f151b2ee2f49dfff65eb2c2b209b47b90 (commit)
      from  8876f829d9f30afe4a2c51179b1d9035fd515347 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=793e769f151b2ee2f49dfff65eb2c2b209b47b90


commit 793e769f151b2ee2f49dfff65eb2c2b209b47b90
Author: Sandro Santilli <address@hidden>
Date:   Tue May 3 22:44:55 2011 +0200

    Fix signed vs. unsigned comparison warning

diff --git a/testsuite/movies.all/tic_tac2-TestRunner.cpp 
b/testsuite/movies.all/tic_tac2-TestRunner.cpp
index 82a06f2..cf247a9 100644
--- a/testsuite/movies.all/tic_tac2-TestRunner.cpp
+++ b/testsuite/movies.all/tic_tac2-TestRunner.cpp
@@ -74,7 +74,7 @@ main(int /*argc*/, char** /*argv*/)
        check_equals(root->get_current_frame(), 1);
        check_equals(slides->get_current_frame(), 0);
 
-       for (int i=0; i<3; ++i) {
+       for (unsigned int i=0; i<3; ++i) {
                std::stringstream s; s << "iteration " << i;
                tester.advance(); 
                check_equals_label(s.str(), root->get_current_frame(), 2+i);
@@ -87,7 +87,7 @@ main(int /*argc*/, char** /*argv*/)
        check_equals(root->get_current_frame(), 4);
        check_equals(slides->get_current_frame(), 0);
 
-       for (int i=0; i<12; ++i) {
+       for (unsigned int i=0; i<12; ++i) {
         tester.advanceClock(1000);
         tester.advance(false); 
                std::stringstream s; s << "i" << i;

-----------------------------------------------------------------------

Summary of changes:
 testsuite/movies.all/tic_tac2-TestRunner.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]