summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-12-29 12:28:14 +0000
committerNicholas Clark <nick@ccl4.org>2007-12-29 12:28:14 +0000
commit453d94a93e573c5979e959533fb269b76eb66968 (patch)
treef4ed259c9ac7d70b14de54d73ae0d0d241912aa1 /proto.h
parenta1cf41cd41cfa3d3c737acde06e0d3bbd02dd08d (diff)
downloadperl-453d94a93e573c5979e959533fb269b76eb66968.tar.gz
Change Perl_av_iter_p() to return IV* rather than I32* (which means
having to allocate memory where sizeof(IV) > sizeof(I32)). p4raw-id: //depot/perl@32760
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index aa4d42af8a..a845a9a34e 100644
--- a/proto.h
+++ b/proto.h
@@ -189,7 +189,7 @@ PERL_CALLCONV void Perl_av_unshift(pTHX_ AV* ar, I32 num)
PERL_CALLCONV SV** Perl_av_arylen_p(pTHX_ AV* av)
__attribute__nonnull__(pTHX_1);
-PERL_CALLCONV I32* Perl_av_iter_p(pTHX_ AV* av)
+PERL_CALLCONV IV* Perl_av_iter_p(pTHX_ AV* av)
__attribute__nonnull__(pTHX_1);
#if defined(PERL_IN_AV_C) || defined(PERL_DECL_PROT)