Change 13005 by jhi@alpha on 2001/11/14 21:53:22

        Signedness nit.

Affected files ...

.... //depot/perl/regexec.c#203 edit

Differences ...

==== //depot/perl/regexec.c#203 (text) ====
Index: perl/regexec.c
--- perl/regexec.c.~1~  Wed Nov 14 15:00:06 2001
+++ perl/regexec.c      Wed Nov 14 15:00:06 2001
@@ -3331,7 +3331,7 @@
                            c1 = c2 = -1000;
                            goto assume_ok_easy;
                        }
-                       s = PL_bostr + ln;
+                       s = (U8*)PL_bostr + ln;
                    }
                    else { s = (U8*)STRING(text_node); }
 
End of Patch.

Reply via email to