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 /embed.fnc | |
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 'embed.fnc')
-rw-r--r-- | embed.fnc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1116,7 +1116,7 @@ Ap |void |re_dup_guts |NN const REGEXP *sstr|NN REGEXP *dstr \ Ap |PerlIO*|fp_dup |NULLOK PerlIO *const fp|const char type|NN CLONE_PARAMS *const param ApR |DIR* |dirp_dup |NULLOK DIR *const dp ApR |GP* |gp_dup |NULLOK GP *const gp|NN CLONE_PARAMS *const param -ApR |MAGIC* |mg_dup |NULLOK MAGIC *const mg|NN CLONE_PARAMS *const param +ApR |MAGIC* |mg_dup |NULLOK MAGIC *mg|NN CLONE_PARAMS *const param ApR |SV* |sv_dup |NULLOK const SV* sstr|NN CLONE_PARAMS* param Ap |void |rvpv_dup |NN SV* dstr|NN const SV *sstr|NN CLONE_PARAMS* param Ap |yy_parser*|parser_dup |NULLOK const yy_parser *const proto|NN CLONE_PARAMS *const param |