summaryrefslogtreecommitdiff
path: root/mg.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-04-25 12:47:11 +0100
committerNicholas Clark <nick@ccl4.org>2010-04-25 13:47:46 +0100
commitc7a0c747fdb47452732e101675b0573fa89ec182 (patch)
tree9f4ca7cd3628b3364466e01144a1f9f2f2733fdd /mg.c
parentfebb3a6d221072614a4dcfef3d3953e212e5cf6c (diff)
downloadperl-c7a0c747fdb47452732e101675b0573fa89ec182.tar.gz
Change the flags argument to magic_methcall/magic_methcall1 from I32 to U32.
Diffstat (limited to 'mg.c')
-rw-r--r--mg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mg.c b/mg.c
index b6bd2979c4..e29b1c6804 100644
--- a/mg.c
+++ b/mg.c
@@ -1661,7 +1661,7 @@ Returns the SV (if any) returned by the method, or NULL on failure.
*/
SV*
-Perl_magic_methcall(pTHX_ SV *sv, const MAGIC *mg, const char *meth, I32 flags,
+Perl_magic_methcall(pTHX_ SV *sv, const MAGIC *mg, const char *meth, U32 flags,
int n, SV *arg1, SV *arg2)
{
dVAR;
@@ -1708,7 +1708,7 @@ Perl_magic_methcall(pTHX_ SV *sv, const MAGIC *mg, const char *meth, I32 flags,
/* wrapper for magic_methcall that creates the first arg */
STATIC SV*
-S_magic_methcall1(pTHX_ SV *sv, const MAGIC *mg, const char *meth, I32 flags,
+S_magic_methcall1(pTHX_ SV *sv, const MAGIC *mg, const char *meth, U32 flags,
int n, SV *val)
{
dVAR;