Author: infinoid
Date: Wed Dec 31 08:41:21 2008
New Revision: 34711

Modified:
   trunk/src/pmc/stringhandle.pmc

Log:
[cage] Fix a warning:
./src/pmc/stringhandle.pmc:550: warning: comparison between signed and unsigned

Modified: trunk/src/pmc/stringhandle.pmc
==============================================================================
--- trunk/src/pmc/stringhandle.pmc      (original)
+++ trunk/src/pmc/stringhandle.pmc      Wed Dec 31 08:41:21 2008
@@ -543,7 +543,7 @@
 
     METHOD eof() {
         STRING *stringhandle;
-        INTVAL offset;
+        UINTVAL offset;
         GET_ATTR_stringhandle(INTERP, SELF, stringhandle);
         GET_ATTR_read_offset(INTERP, SELF, offset);
 

Reply via email to