Author: petdance
Date: Fri Apr 21 22:17:26 2006
New Revision: 12397
Modified:
trunk/src/io/io.c
Log:
Fixed incorrect consting
Modified: trunk/src/io/io.c
==============================================================================
--- trunk/src/io/io.c (original)
+++ trunk/src/io/io.c Fri Apr 21 22:17:26 2006
@@ -845,7 +845,7 @@
{
ParrotIOLayer * const l = PMC_struct_val(pmc);
ParrotIO * const io = PMC_data0(pmc);
- STRING * const res = new_string_header(interpreter, 0);
+ STRING *res = new_string_header(interpreter, 0);
if (!io)
return -1;