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 /mg.h | |
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 'mg.h')
-rw-r--r-- | mg.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ struct mgvtbl { int (CPERLscope(*svt_clear))(pTHX_ SV *sv, MAGIC* mg); int (CPERLscope(*svt_free)) (pTHX_ SV *sv, MAGIC* mg); int (CPERLscope(*svt_copy)) (pTHX_ SV *sv, MAGIC* mg, - SV *nsv, const char *name, int namlen); + SV *nsv, const char *name, I32 namlen); int (CPERLscope(*svt_dup)) (pTHX_ MAGIC *mg, CLONE_PARAMS *param); int (CPERLscope(*svt_local))(pTHX_ SV *nsv, MAGIC *mg); }; |