summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-03-25 06:11:46 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-03-25 06:11:46 +0000
commite65f3abd032ddf0ce2aad5a08fddd39ba3e1e377 (patch)
tree3f5f084a32675c8a5ff1461208c82249a2641c2e /proto.h
parentf4b9d8806d76b352b24a8b7684a45c4120e28af1 (diff)
downloadperl-e65f3abd032ddf0ce2aad5a08fddd39ba3e1e377.tar.gz
fix a few places that said 'int', but meant 'STRLEN'
p4raw-id: //depot/perl@3162
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 e2ea784f11..b809ea06e2 100644
--- a/proto.h
+++ b/proto.h
@@ -617,7 +617,7 @@ VIRTUAL void sv_setnv _((SV* sv, double num));
VIRTUAL SV* sv_setref_iv _((SV* rv, const char* classname, IV iv));
VIRTUAL SV* sv_setref_nv _((SV* rv, const char* classname, double nv));
VIRTUAL SV* sv_setref_pv _((SV* rv, const char* classname, void* pv));
-VIRTUAL SV* sv_setref_pvn _((SV* rv, const char* classname, char* pv, I32 n));
+VIRTUAL SV* sv_setref_pvn _((SV* rv, const char* classname, char* pv, STRLEN n));
VIRTUAL void sv_setpv _((SV* sv, const char* ptr));
VIRTUAL void sv_setpvn _((SV* sv, const char* ptr, STRLEN len));
VIRTUAL void sv_setsv _((SV* dsv, SV* ssv));