[svn:parrot] r39426 - trunk/src

NotFound at svn.parrot.org NotFound at svn.parrot.org
Sat Jun 6 11:01:16 UTC 2009


Author: NotFound
Date: Sat Jun  6 11:01:15 2009
New Revision: 39426
URL: https://trac.parrot.org/parrot/changeset/39426

Log:
[cage] fix warning in mem_realloc_n_typed usage

Modified:
   trunk/src/embed.c

Modified: trunk/src/embed.c
==============================================================================
--- trunk/src/embed.c	Sat Jun  6 08:02:57 2009	(r39425)
+++ trunk/src/embed.c	Sat Jun  6 11:01:15 2009	(r39426)
@@ -459,8 +459,7 @@
                 break;
 
             chunk_size   = 1024;
-            program_code = mem_realloc_n_typed(program_code,
-                 program_size + chunk_size, char);
+            mem_realloc_n_typed(program_code, program_size + chunk_size, char);
 
             if (!program_code) {
                 Parrot_io_eprintf(interp,


More information about the parrot-commits mailing list