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

NotFound at svn.parrot.org NotFound at svn.parrot.org
Fri May 14 13:06:08 UTC 2010


Author: NotFound
Date: Fri May 14 13:06:08 2010
New Revision: 46609
URL: https://trac.parrot.org/parrot/changeset/46609

Log:
c++ conformance

Modified:
   trunk/src/pmc/nci.pmc

Modified: trunk/src/pmc/nci.pmc
==============================================================================
--- trunk/src/pmc/nci.pmc	Fri May 14 12:42:02 2010	(r46608)
+++ trunk/src/pmc/nci.pmc	Fri May 14 13:06:08 2010	(r46609)
@@ -64,7 +64,7 @@
     char         static_buf[16];
     char * const sig_buf = sig_length <= sizeof static_buf ?
                             static_buf :
-                            mem_sys_allocate(buf_length);
+                            (char *)mem_sys_allocate(buf_length);
 
     size_t j = 0;
     size_t i;


More information about the parrot-commits mailing list