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:
29489e7
)
fix 64-bit casting error in change 22741 (uninit var warnings)
author
Dave Mitchell
<davem@fdisolutions.com>
Sat, 24 Apr 2004 12:53:07 +0000
(12:53 +0000)
committer
Dave Mitchell
<davem@fdisolutions.com>
Sat, 24 Apr 2004 12:53:07 +0000
(12:53 +0000)
p4raw-id: //depot/perl@22742
sv.c
patch
|
blob
|
blame
|
history
diff --git
a/sv.c
b/sv.c
index
5e4bf72
..
076ee17
100644
(file)
--- a/
sv.c
+++ b/
sv.c
@@
-733,7
+733,7
@@
S_varname(pTHX_ GV *gv, char *gvtype, PADOFFSET targ,
}
else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
*SvPVX(name) = '$';
- Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", aindex);
+ Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]",
(IV)
aindex);
}
else if (subscript_type == FUV_SUBSCRIPT_WITHIN)
sv_insert(name, 0, 0, "within ", 7);