Change 16101 by jhi@alpha on 2002/04/23 04:36:27
Pointer to UV casting.
Affected files ...
.... //depot/perl/regexec.c#280 edit
Differences ...
==== //depot/perl/regexec.c#280 (text) ====
Index: perl/regexec.c
--- perl/regexec.c.~1~ Mon Apr 22 22:45:05 2002
+++ perl/regexec.c Mon Apr 22 22:45:05 2002
@@ -3073,7 +3073,7 @@
"%*s %ld out of %ld..%ld cc=%"UVxf"\n",
REPORT_CODE_OFF+PL_regindent*2, "",
(long)n, (long)cc->min,
- (long)cc->max, (UV)cc)
+ (long)cc->max, PTR2UV(cc)
);
/* If degenerate scan matches "", assume scan done. */
End of Patch.