Below is a patch to fix the two warnings about const-ness I get in
string.c. This should also fix the tcc build on tinderbox. Hopefully this
spot-fix to the const-ness problems won't cause further const-ness
problems farther down the line.

Mike Lambert

Index: include/parrot/string.h
===================================================================
RCS file: /cvs/public/parrot/include/parrot/string.h,v
retrieving revision 1.34
diff -r1.34 string.h
26,27c26,27
<     ENCODING *encoding;
<     CHARTYPE *type;
---
>     const ENCODING *encoding;
>     const CHARTYPE *type;

Reply via email to