diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-01-21 13:55:48 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-01-21 15:05:41 +0000 |
commit | 8253c7d6f3a6d423dafff6207f708e56413f162d (patch) | |
tree | 70a50d00be52edc66f96e71982e4051ba90087b2 /lib/ExtUtils | |
parent | b8921b3e20c463c85c5db53a08af87e03d44b1d3 (diff) | |
download | perl-8253c7d6f3a6d423dafff6207f708e56413f162d.tar.gz |
Correct the call to get_hv() to use GV_ADD for the flags, rather than TRUE.
Diffstat (limited to 'lib/ExtUtils')
-rw-r--r-- | lib/ExtUtils/Constant/ProxySubs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/Constant/ProxySubs.pm b/lib/ExtUtils/Constant/ProxySubs.pm index 1de3f80ad3..c3fe8ed3c5 100644 --- a/lib/ExtUtils/Constant/ProxySubs.pm +++ b/lib/ExtUtils/Constant/ProxySubs.pm @@ -318,7 +318,7 @@ BOOT: #ifdef dTHX dTHX; #endif - HV *symbol_table = get_hv("$symbol_table", TRUE); + HV *symbol_table = get_hv("$symbol_table", GV_ADD); #ifndef SYMBIAN HV *${c_subname}_missing; #endif |