Change 27351 by [EMAIL PROTECTED] on 2006/02/28 12:40:06
Silence a VC++ warning with DEBUGGING builds
(signed/unsigned mismatch)
Affected files ...
... //depot/perl/sv.c#1178 edit
Differences ...
==== //depot/perl/sv.c#1178 (text) ====
Index: perl/sv.c
--- perl/sv.c#1177~27350~ 2006-02-27 13:41:58.000000000 -0800
+++ perl/sv.c 2006-02-28 04:40:06.000000000 -0800
@@ -1081,7 +1081,7 @@
#ifdef DEBUGGING
if (!done_sanity_check) {
- int i = SVt_LAST;
+ unsigned int i = SVt_LAST;
done_sanity_check = TRUE;
End of Patch.