diff options
author | David Mitchell <davem@iabyn.com> | 2011-10-11 11:01:35 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2011-10-11 11:01:35 +0100 |
commit | 60dde6b20521a0b199e8c9b6867f2a51013ba31c (patch) | |
tree | b3775dd14f98a6afba8a6e1346519434e9e0a088 /op.c | |
parent | ad6a4f4a732b6d612bcb45ce5faa794fa5f8f470 (diff) | |
download | perl-60dde6b20521a0b199e8c9b6867f2a51013ba31c.tar.gz |
add missing STATIC to S_finalize_op
This function was declared static in embed.fnc, but the actual function
definition was missing the 'STATIC'.
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1467,7 +1467,7 @@ Perl_finalize_optree(pTHX_ OP* o) LEAVE; } -void +STATIC void S_finalize_op(pTHX_ OP* o) { PERL_ARGS_ASSERT_FINALIZE_OP; |