develooper Front page | perl.cvs.parrot | Postings from January 2009

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

From:
bernhard
Date:
January 28, 2009 03:17
Subject:
[svn:parrot] r36088 - trunk/src/pmc
Message ID:
20090128111721.275CECB9AE@x12.develooper.com
Author: bernhard
Date: Wed Jan 28 03:17:20 2009
New Revision: 36088

Modified:
   trunk/src/pmc/resizableintegerarray.pmc

Log:
[codingstd] c_parens.t

Modified: trunk/src/pmc/resizableintegerarray.pmc
==============================================================================
--- trunk/src/pmc/resizableintegerarray.pmc	(original)
+++ trunk/src/pmc/resizableintegerarray.pmc	Wed Jan 28 03:17:20 2009
@@ -141,7 +141,7 @@
             }
 
             GET_ATTR_int_array(INTERP, SELF, int_array);
-            int_array = (INTVAL*)mem_sys_realloc( (void*)int_array, cur * sizeof (INTVAL));
+            int_array = (INTVAL*) mem_sys_realloc((void*) int_array, cur * sizeof (INTVAL));
             SET_ATTR_int_array(INTERP, SELF, int_array);
             SET_ATTR_size(INTERP, SELF, size);
             SET_ATTR_resize_threshold(INTERP, SELF, cur);



nntp.perl.org: Perl Programming lists via nntp and http.
Comments to Ask Bjørn Hansen at ask@perl.org | Group listing | About