This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd028ba
)
fix a cast warning in perly.c
author
Dave Mitchell
<davem@fdisolutions.com>
Sat, 16 Dec 2006 01:36:28 +0000
(
01:36
+0000)
committer
Dave Mitchell
<davem@fdisolutions.com>
Sat, 16 Dec 2006 01:36:28 +0000
(
01:36
+0000)
p4raw-id: //depot/perl@29560
perly.c
patch
|
blob
|
blame
|
history
diff --git
a/perly.c
b/perly.c
index
193bae3
..
e3f9357
100644
(file)
--- a/
perly.c
+++ b/
perly.c
@@
-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);