diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-04-25 12:47:11 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-04-25 13:47:46 +0100 |
commit | c7a0c747fdb47452732e101675b0573fa89ec182 (patch) | |
tree | 9f4ca7cd3628b3364466e01144a1f9f2f2733fdd /mg.c | |
parent | febb3a6d221072614a4dcfef3d3953e212e5cf6c (diff) | |
download | perl-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |