diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-10-30 22:27:16 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-10-30 22:27:16 +0000 |
commit | b3dbd76e6e180b608015c6158c3fec9739ef1343 (patch) | |
tree | 3fdaa2cbd97f006d27bc5b10b630373f7fd9e3ce /sv.c | |
parent | 1593ad57168f1432573f8effd44b7610e9f8f962 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |