Skip to content

Commit

Permalink
squash me: fix return count
Browse files Browse the repository at this point in the history
  • Loading branch information
tonycoz committed Jul 10, 2024
1 parent 56f9699 commit 968443f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/Devel-PPPort/parts/inc/SvREFCNT
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ __UNDEFINED__
#endif

/* not as efficient as the real thing, but it works */
__UNDEFINED__ SvREFCNT_dec_NN(sv) SvREFCNT_dec(sv)
__UNDEFINED__ SvREFCNT_dec_NN(sv) SvREFCNT_dec(sv)

__UNDEFINED__ SvREFCNT_inc_simple_void(sv) STMT_START { if (sv) SvREFCNT(sv)++; } STMT_END
__UNDEFINED__ SvREFCNT_inc_simple_NN(sv) (++SvREFCNT(sv), (SV*)(sv))
Expand Down Expand Up @@ -119,7 +119,7 @@ SvREFCNT()
SvREFCNT_dec(sv);
mXPUSHi(SvREFCNT(sv) == 1);
SvREFCNT_dec(sv);
XSRETURN(14);
XSRETURN(15);

=tests plan => 15

Expand Down

0 comments on commit 968443f

Please sign in to comment.