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);