gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r10561: Stop glyph count corrupting


From: Benjamin Wolsey
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r10561: Stop glyph count corrupting terminal output.
Date: Sun, 08 Feb 2009 10:46:26 +0100
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10561
committer: Benjamin Wolsey <address@hidden>
branch nick: trunk
timestamp: Sun 2009-02-08 10:46:26 +0100
message:
  Stop glyph count corrupting terminal output.
modified:
  libcore/swf/TextRecord.cpp
=== modified file 'libcore/swf/TextRecord.cpp'
--- a/libcore/swf/TextRecord.cpp        2009-01-22 20:10:39 +0000
+++ b/libcore/swf/TextRecord.cpp        2009-02-08 09:46:26 +0000
@@ -120,7 +120,8 @@
     if (!glyphCount) return false;
 
     IF_VERBOSE_PARSE(
-        log_parse(_("  GlyphEntries: count = %d"), glyphCount);
+        log_parse(_("  GlyphEntries: count = %d"),
+            static_cast<int>(glyphCount));
     );
 
     in.ensureBits(glyphCount * (glyphBits + advanceBits));


reply via email to

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