diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-04-10 16:37:36 -0500 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-04-12 09:19:43 +0000 |
commit | 607fa7f26ce8e3518faf053c2dbf72e6a35ee9b9 (patch) | |
tree | 4a3769ed4a2d78196347561c2a38cd5b552e84d9 /ext/List/Util/Util.xs | |
parent | f398eb67d321bfe2b4dd05cb57fa3c94a3337abc (diff) | |
download | perl-607fa7f26ce8e3518faf053c2dbf72e6a35ee9b9.tar.gz |
Refactoring to Sv*_set() macros - patch #3
Message-ID: <20050411023736.GB9355@mccoy.peters.homeunix.org>
(with correction to SvUV_set)
p4raw-id: //depot/perl@24229
Diffstat (limited to 'ext/List/Util/Util.xs')
-rw-r--r-- | ext/List/Util/Util.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/List/Util/Util.xs b/ext/List/Util/Util.xs index 96b8cab534..3a03488197 100644 --- a/ext/List/Util/Util.xs +++ b/ext/List/Util/Util.xs @@ -358,7 +358,7 @@ CODE: } #ifdef SVf_IVisUV else if (SvUOK(num)) { - SvUVX(ST(0)) = SvUV(num); + SvUV_set(ST(0), SvUV(num)); SvIOK_on(ST(0)); SvIsUV_on(ST(0)); } |