CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/12/05 08:24:37
Modified files: . : ChangeLog server/parser : shape_character_def.cpp Log message: fix format strings for SHAPE_LOG builds. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5088&r2=1.5089 http://cvs.savannah.gnu.org/viewcvs/gnash/server/parser/shape_character_def.cpp?cvsroot=gnash&r1=1.55&r2=1.56 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.5088 retrieving revision 1.5089 diff -u -b -r1.5088 -r1.5089 --- ChangeLog 4 Dec 2007 23:50:06 -0000 1.5088 +++ ChangeLog 5 Dec 2007 08:24:36 -0000 1.5089 @@ -1,5 +1,10 @@ 2007-12-05 Sandro Santilli <[EMAIL PROTECTED]> + * server/parser/shape_character_def.cpp (read): + fix format strings for SHAPE_LOG builds. + +2007-12-05 Sandro Santilli <[EMAIL PROTECTED]> + * configure.ac, server/dlist.{cpp,h}: get assertion checking back to enabled by default, disable instead the invariant testing function for DisplayList, unless explicitly requested with a compile Index: server/parser/shape_character_def.cpp =================================================================== RCS file: /sources/gnash/gnash/server/parser/shape_character_def.cpp,v retrieving revision 1.55 retrieving revision 1.56 diff -u -b -r1.55 -r1.56 --- server/parser/shape_character_def.cpp 4 Dec 2007 11:45:32 -0000 1.55 +++ server/parser/shape_character_def.cpp 5 Dec 2007 08:24:36 -0000 1.56 @@ -17,7 +17,7 @@ // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA // -/* $Id: shape_character_def.cpp,v 1.55 2007/12/04 11:45:32 strk Exp $ */ +/* $Id: shape_character_def.cpp,v 1.56 2007/12/05 08:24:36 strk Exp $ */ // Based on the public domain shape.cpp of Thatcher Ulrich <[EMAIL PROTECTED]> 2003 @@ -280,7 +280,7 @@ #if SHAPE_LOG IF_VERBOSE_PARSE ( - log_parse(_(" shape_character read: moveto %4g %4g"), x, y); + log_parse(_(" shape_character read: moveto %d %d"), x, y); ); #endif } @@ -456,7 +456,7 @@ #if SHAPE_LOG IF_VERBOSE_PARSE ( - log_parse(_(" shape_character read: curved edge = %4g %4g - %4g %4g - %4g %4g"), x, y, cx, cy, ax, ay); + log_parse(_(" shape_character read: curved edge = %d %d - %d %d - %d %d"), x, y, cx, cy, ax, ay); ); #endif @@ -486,7 +486,7 @@ #if SHAPE_LOG IF_VERBOSE_PARSE ( - log_parse(_(" shape_character_read: straight edge = %4g %4g - %4g %4g"), x, y, x + dx, y + dy); + log_parse(_(" shape_character_read: straight edge = %d %d - %d %d"), x, y, x + dx, y + dy); ); #endif _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit