diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-03-13 16:03:56 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-03-13 16:03:56 +0000 |
commit | 4f58fed66d9db68b8f40235b5d930c67f7aff64e (patch) | |
tree | 169b14a252e5546fab4a79497ba323cbbfe303d6 /proto.h | |
parent | 66ceb5325074bc0232dc5b60ccb414245562ce2b (diff) | |
download | perl-4f58fed66d9db68b8f40235b5d930c67f7aff64e.tar.gz |
Change 33507 had a const too far (Perl_mg_dup()'s mg is assigned to).
p4raw-id: //depot/perl@33508
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4055,7 +4055,7 @@ PERL_CALLCONV GP* Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param) #define PERL_ARGS_ASSERT_GP_DUP \ assert(param) -PERL_CALLCONV MAGIC* Perl_mg_dup(pTHX_ MAGIC *const mg, CLONE_PARAMS *const param) +PERL_CALLCONV MAGIC* Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param) __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_2); #define PERL_ARGS_ASSERT_MG_DUP \ |