summaryrefslogtreecommitdiff
path: root/mg.h
diff options
context:
space:
mode:
authorVincent Pit <perl@profvince.com>2008-02-06 11:39:58 +0100
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2008-02-08 15:18:45 +0000
commit3468c7eaa8d7687e8ae89928492b408a4d6c752f (patch)
tree5517a8cec371cfee9bd973f3784d9b61954b4bc5 /mg.h
parent099b16d3b50ccbb639491fa8bd48153ec3225450 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mg.h b/mg.h
index fffc2dc899..bdafe261e9 100644
--- a/mg.h
+++ b/mg.h
@@ -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);
};