diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-11-03 05:24:10 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-11-04 05:10:18 -0800 |
commit | ddbc26e57f1b560af69ffe5b3f09ba053923edae (patch) | |
tree | 9a2b80dad348c9afa062034e17dd46a9a537ede5 /hv.h | |
parent | 7274b33cb1232fb4911cb441bae8e0abebf734f2 (diff) | |
download | perl-ddbc26e57f1b560af69ffe5b3f09ba053923edae.tar.gz |
hv.h: missing macro parentheses
Let’s defuse this time bomb before it causes problems.
Diffstat (limited to 'hv.h')
-rw-r--r-- | hv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -472,7 +472,7 @@ C<SV*>. #ifdef PERL_CORE # define hv_deletehek(hv, hek, flags) \ - hv_common(hv, NULL, HEK_KEY(hek), HEK_LEN(hek), HEK_UTF8(hek), \ + hv_common((hv), NULL, HEK_KEY(hek), HEK_LEN(hek), HEK_UTF8(hek), \ (flags)|HV_DELETE, NULL, HEK_HASH(hek)) #endif |