diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-10-28 18:29:36 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-10-28 18:29:36 +0000 |
commit | 0c289d1353d1d6a489307ffba4ca3a6f96e97809 (patch) | |
tree | 6ba2f17b39fe54ccaea4864b8022aa1433ec99e3 /hv.c | |
parent | f47f16450cc0b7d92fc1f3d3d728aa1b96868710 (diff) | |
download | perl-0c289d1353d1d6a489307ffba4ca3a6f96e97809.tar.gz |
Perl_hv_placeholders_get() actually takes a const HV *hv.
p4raw-id: //depot/perl@34618
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2506,10 +2506,10 @@ Perl_hv_placeholders_p(pTHX_ HV *hv) I32 -Perl_hv_placeholders_get(pTHX_ HV *hv) +Perl_hv_placeholders_get(pTHX_ const HV *hv) { dVAR; - MAGIC * const mg = mg_find((SV*)hv, PERL_MAGIC_rhash); + MAGIC * const mg = mg_find((const SV *)hv, PERL_MAGIC_rhash); PERL_ARGS_ASSERT_HV_PLACEHOLDERS_GET; |