summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-10-30 22:27:16 +0000
committerNicholas Clark <nick@ccl4.org>2008-10-30 22:27:16 +0000
commitb3dbd76e6e180b608015c6158c3fec9739ef1343 (patch)
tree3fdaa2cbd97f006d27bc5b10b630373f7fd9e3ce /sv.c
parent1593ad57168f1432573f8effd44b7610e9f8f962 (diff)
downloadperl-b3dbd76e6e180b608015c6158c3fec9739ef1343.tar.gz
Change 34627 didn't realise that if S_find_uninit_var() takes a
const SV *, then so can Perl_report_uninit(). p4raw-id: //depot/perl@34673
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 6811155f8a..a425a5b9a5 100644
--- a/sv.c
+++ b/sv.c
@@ -12835,7 +12835,7 @@ Print appropriate "Use of uninitialized variable" warning
*/
void
-Perl_report_uninit(pTHX_ SV* uninit_sv)
+Perl_report_uninit(pTHX_ const SV *uninit_sv)
{
dVAR;
if (PL_op) {