Change 33385 by [EMAIL PROTECTED] on 2008/02/27 12:54:52

        Fix another Win32/VC6 compiler warning caused by #33231
        (missed by #33336--this one only occurs in debug builds)

Affected files ...

... //depot/perl/sv.c#1513 edit

Differences ...

==== //depot/perl/sv.c#1513 (text) ====
Index: perl/sv.c
--- perl/sv.c#1512~33379~       2008-02-26 15:22:30.000000000 -0800
+++ perl/sv.c   2008-02-27 04:54:52.000000000 -0800
@@ -407,7 +407,7 @@
 /* called by sv_report_used() for each live SV */
 
 static void
-do_report_used(pTHX_ SV *sv)
+do_report_used(pTHX_ SV *const sv)
 {
     if (SvTYPE(sv) != SVTYPEMASK) {
        PerlIO_printf(Perl_debug_log, "****\n");
End of Patch.

Reply via email to