summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2009-03-30 00:48:13 +0100
committerDavid Mitchell <davem@iabyn.com>2009-03-30 00:48:13 +0100
commit136f96283a398f49aa36b7d47086bf37fd04c4b4 (patch)
treefd9bd1a39aec6520a3aa6f99b526318cd91d3ef7 /regcomp.c
parent53519b6f1d29ac9686d0ec5edf6ad18224ba36a0 (diff)
downloadperl-136f96283a398f49aa36b7d47086bf37fd04c4b4.tar.gz
fix some 5.10.x-specific const warnings after the big MUTABLE_* merge
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.c b/regcomp.c
index 1bf8bc9fc5..299f925b01 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -5255,7 +5255,7 @@ Perl_reg_numbered_buff_length(pTHX_ REGEXP * const rx, const SV * const sv,
goto getlen;
} else {
if (ckWARN(WARN_UNINITIALIZED))
- report_uninit((const SV *)sv);
+ report_uninit((SV *)sv);
return 0;
}
}