diff options
author | Vincent Pit <perl@profvince.com> | 2008-02-06 11:39:58 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-02-08 15:18:45 +0000 |
commit | 3468c7eaa8d7687e8ae89928492b408a4d6c752f (patch) | |
tree | 5517a8cec371cfee9bd973f3784d9b61954b4bc5 /pod/perlguts.pod | |
parent | 099b16d3b50ccbb639491fa8bd48153ec3225450 (diff) | |
download | perl-3468c7eaa8d7687e8ae89928492b408a4d6c752f.tar.gz |
mg_copy ought to take an I32
From: "Vincent Pit" <perl@profvince.com>
Message-ID: <39468.147.210.17.175.1202290798.squirrel@147.210.17.175>
p4raw-id: //depot/perl@33256
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index f0ec1c9ee3..33346c6bd3 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -979,7 +979,7 @@ routine types: int (*svt_clear)(SV* sv, MAGIC* mg); int (*svt_free)(SV* sv, MAGIC* mg); - int (*svt_copy)(SV *sv, MAGIC* mg, SV *nsv, const char *name, int namlen); + int (*svt_copy)(SV *sv, MAGIC* mg, SV *nsv, const char *name, I32 namlen); int (*svt_dup)(MAGIC *mg, CLONE_PARAMS *param); int (*svt_local)(SV *nsv, MAGIC *mg); |