diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2006-12-16 01:36:28 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2006-12-16 01:36:28 +0000 |
commit | ca06c01c30b19d0094642f2e317dadf13d4509cd (patch) | |
tree | bfdd1c8de029104cc5b2c577c3c6412d61b1b4a3 /perly.c | |
parent | cd028baaa42beb359f547c3950a019ed6b46fc80 (diff) | |
download | perl-ca06c01c30b19d0094642f2e317dadf13d4509cd.tar.gz |
fix a cast warning in perly.c
p4raw-id: //depot/perl@29560
Diffstat (limited to 'perly.c')
-rw-r--r-- | perly.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -174,7 +174,7 @@ yy_stack_print (pTHX_ const short *yyss, const short *yyssp, const YYSTYPE *yyvs 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); |