diff options
author | Andy Lester <andy@petdance.com> | 2005-10-04 10:16:05 -0500 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-10-05 15:34:09 +0000 |
commit | 44f8325f4c9b3aaf24b47f4da7dce3e8170dcf42 (patch) | |
tree | 79ae96444551bc3a112d7601282f544236b6cdfb /xsutils.c | |
parent | 5f0135ebccd6cdb2441aabb64baa39aea87199d3 (diff) | |
download | perl-44f8325f4c9b3aaf24b47f4da7dce3e8170dcf42.tar.gz |
Re: [PATCH] Random constings and printf cleanup
Message-ID: <20051004201605.GA31682@petdance.com>
p4raw-id: //depot/perl@25693
Diffstat (limited to 'xsutils.c')
-rw-r--r-- | xsutils.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -132,10 +132,11 @@ modify_SV_attributes(pTHX_ SV *sv, SV **retlist, SV **attrlist, int numattrs) case 'e': if (memEQ(name, "uniqu", 5)) { if (SvTYPE(sv) == SVt_PVGV) { - if (negated) + if (negated) { GvUNIQUE_off(sv); - else + } else { GvUNIQUE_on(sv); + } } /* Hope this came from toke.c if not a GV. */ continue; |