[svn:parrot] r48296 - trunk/src/pmc

NotFound at svn.parrot.org NotFound at svn.parrot.org
Tue Aug 3 19:11:37 UTC 2010


Author: NotFound
Date: Tue Aug  3 19:11:36 2010
New Revision: 48296
URL: https://trac.parrot.org/parrot/changeset/48296

Log:
s/const const/const

Modified:
   trunk/src/pmc/imageio.pmc

Modified: trunk/src/pmc/imageio.pmc
==============================================================================
--- trunk/src/pmc/imageio.pmc	Tue Aug  3 18:57:55 2010	(r48295)
+++ trunk/src/pmc/imageio.pmc	Tue Aug  3 19:11:36 2010	(r48296)
@@ -520,7 +520,7 @@
 */
 
     VTABLE void push_integer(INTVAL v) {
-        const const size_t len = PF_size_integer() * sizeof (opcode_t);
+        const size_t len = PF_size_integer() * sizeof (opcode_t);
         ensure_buffer_size(INTERP, SELF, len);
         SET_VISIT_CURSOR(SELF,
             (char *)PF_store_integer(GET_VISIT_CURSOR(SELF), v));


More information about the parrot-commits mailing list