summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-01-05 09:47:09 +0000
committerNicholas Clark <nick@ccl4.org>2011-01-05 12:40:28 +0000
commit0d5509eb49d621060b8aef6373628a0017faaff0 (patch)
tree2c1927f16d3cfc50979ccdfc969f18549699fe05 /proto.h
parent1daf3b755691d9e2e52b73fcc1111714808c874a (diff)
downloadperl-0d5509eb49d621060b8aef6373628a0017faaff0.tar.gz
Split the flags and argc parameters to S_tied_handle_method().
Previously they were combined into one numeric value, using a bitshift. This was a false economy.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 74c4138e77..8cc037933e 100644
--- a/proto.h
+++ b/proto.h
@@ -6261,7 +6261,7 @@ STATIC SV * S_space_join_names_mortal(pTHX_ char *const *array)
#define PERL_ARGS_ASSERT_SPACE_JOIN_NAMES_MORTAL \
assert(array)
-STATIC OP * S_tied_handle_method(pTHX_ const char *const methname, SV **sp, IO *const io, MAGIC *const mg, const U32 flags, ...)
+STATIC OP * S_tied_handle_method(pTHX_ const char *const methname, SV **sp, IO *const io, MAGIC *const mg, const U32 flags, U32 argc, ...)
__attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2)
__attribute__nonnull__(pTHX_3)