Change 29560 by [EMAIL PROTECTED] on 2006/12/16 01:36:28
fix a cast warning in perly.c
Affected files ...
... //depot/perl/perly.c#94 edit
Differences ...
==== //depot/perl/perly.c#94 (text) ====
Index: perl/perly.c
--- perl/perly.c#93~29549~ 2006-12-13 09:24:49.000000000 -0800
+++ perl/perly.c 2006-12-15 17:36:28.000000000 -0800
@@ -174,7 +174,7 @@
case toketype_i_tkval:
#endif
case toketype_ival:
- PerlIO_printf(Perl_debug_log, " %8"IVdf, yyvs[start+i].ival);
+ PerlIO_printf(Perl_debug_log, " %8"IVdf, (IV)yyvs[start+i].ival);
break;
default:
PerlIO_printf(Perl_debug_log, " %8"UVxf, (UV)yyvs[start+i].ival);
End of Patch.