diff options
author | Andy Lester <andy@petdance.com> | 2005-12-28 07:30:51 -0600 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-12-29 14:17:38 +0000 |
commit | 38a574c7cd99f8022d4ac40300e9e0841811bd6b (patch) | |
tree | c0bd7566d57fe9bf6296a3cb426d48601833e128 /sv.h | |
parent | f16dd614412ea67a8eb64bb09a88fccdbd9db6b6 (diff) | |
download | perl-38a574c7cd99f8022d4ac40300e9e0841811bd6b.tar.gz |
Fixing the SVREFCNT macro
Message-ID: <20051228193051.GD23207@petdance.com>
p4raw-id: //depot/perl@26524
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -169,7 +169,7 @@ perform the upgrade if necessary. See C<svtype>. }) #else # define SvREFCNT_inc(sv) \ - ((PL_Sv=(SV*)(sv)), (PL_Sv && ++(SvREFCNT(PL_Sv))), (SV*)PL_Sv) + ((PL_Sv=(SV*)(sv)) ? ((++(SvREFCNT(PL_Sv))),(PL_Sv)) : NULL) #endif #if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(PERL_GCC_PEDANTIC) |