[svn:parrot] r42033 - trunk/src/string

chromatic at svn.parrot.org chromatic at svn.parrot.org
Fri Oct 23 06:58:46 UTC 2009


Author: chromatic
Date: Fri Oct 23 06:58:45 2009
New Revision: 42033
URL: https://trac.parrot.org/parrot/changeset/42033

Log:
[string] Fixed some compiler warnings in Parrot_str_unescape().

Modified:
   trunk/src/string/api.c

Modified: trunk/src/string/api.c
==============================================================================
--- trunk/src/string/api.c	Fri Oct 23 06:45:57 2009	(r42032)
+++ trunk/src/string/api.c	Fri Oct 23 06:58:45 2009	(r42033)
@@ -2790,7 +2790,7 @@
     char           *p        = enc_char ? strchr(enc_char, ':') : NULL;
     size_t          clength  = strlen(cstring);
     String_iter     iter;
-    INTVAL          offs, d;
+    UINTVAL         offs, d;
     Parrot_UInt4    r;
 
     /* we are constructing const table strings here */


More information about the parrot-commits mailing list