summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2014-09-19 18:28:09 +0100
committerDavid Mitchell <davem@iabyn.com>2014-09-19 18:28:09 +0100
commit88938aa807eec74bf613701c9b6e851df9859b2a (patch)
tree31e7537557365898e3adea07b31b9c13656e5b16
parent62ead80fb7574026b211ef1fe6b1e10b0e376ccc (diff)
downloadperl-88938aa807eec74bf613701c9b6e851df9859b2a.tar.gz
B.xs: fix syntax err in PERL_VERSION < 17
The blead version of B.xs obviously hasn't been able to be compiled on old perls for a while. This fixes one such syntax error, blind.
-rw-r--r--ext/B/B.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/B/B.xs b/ext/B/B.xs
index 54e4c10096..17614cbbbb 100644
--- a/ext/B/B.xs
+++ b/ext/B/B.xs
@@ -676,7 +676,7 @@ struct OP_methods {
#if PERL_VERSION >= 17
{ STR_WITH_LEN("code_list"),OPp, STRUCT_OFFSET(struct pmop, op_code_list),},/*13*/
#else
- { STR_WITH_LEN("code_list"),op_offset_special, 0,
+ { STR_WITH_LEN("code_list"),op_offset_special, 0, }, /*13*/
#endif
{ STR_WITH_LEN("sv"), SVp, STRUCT_OFFSET(struct svop, op_sv), },/*14*/
{ STR_WITH_LEN("gv"), SVp, STRUCT_OFFSET(struct svop, op_sv), },/*15*/