gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/dlist.h


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog server/dlist.h
Date: Fri, 21 Sep 2007 12:12:33 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/09/21 12:12:33

Modified files:
        .              : ChangeLog 
        server         : dlist.h 

Log message:
                * server/dlist.h (testInvariant): fix a cast discarding const
                  qualifier.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4368&r2=1.4369
http://cvs.savannah.gnu.org/viewcvs/gnash/server/dlist.h?cvsroot=gnash&r1=1.52&r2=1.53

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4368
retrieving revision 1.4369
diff -u -b -r1.4368 -r1.4369
--- ChangeLog   21 Sep 2007 10:03:44 -0000      1.4368
+++ ChangeLog   21 Sep 2007 12:12:32 -0000      1.4369
@@ -1,5 +1,7 @@
 2007-09-21 Sandro Santilli <address@hidden>
 
+       * server/dlist.h (testInvariant): fix a cast discarding const
+         qualifier.
        * server/sprite_instance.cpp (execute_frame_tags): optimized
          execution loop and avoid calling both execute_state and 
          execute_action (this is propedeutic for DoInitAction possibly

Index: server/dlist.h
===================================================================
RCS file: /sources/gnash/gnash/server/dlist.h,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -b -r1.52 -r1.53
--- server/dlist.h      13 Sep 2007 13:57:49 -0000      1.52
+++ server/dlist.h      21 Sep 2007 12:12:33 -0000      1.53
@@ -65,7 +65,7 @@
                        int depth = ch->get_depth();
                        if ( ! depths.insert(depth).second )
                        {
-                               log_debug("Depth %d is duplicated in 
DisplayList %p", depth, (void*)this);
+                               log_debug("Depth %d is duplicated in 
DisplayList %p", depth, (const void*)this);
                                abort();
                        }
                }




reply via email to

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