summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2011-10-11 11:01:35 +0100
committerDavid Mitchell <davem@iabyn.com>2011-10-11 11:01:35 +0100
commit60dde6b20521a0b199e8c9b6867f2a51013ba31c (patch)
treeb3775dd14f98a6afba8a6e1346519434e9e0a088 /op.c
parentad6a4f4a732b6d612bcb45ce5faa794fa5f8f470 (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index f54a105496..e4e42b486d 100644
--- a/op.c
+++ b/op.c
@@ -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;