In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/ff859a7f357d88ad4be3a66f1d07faa2ae291fa0?hp=7fc4e712bcb917c5efc3b8c89fdde419f1a8d44f>

- Log -----------------------------------------------------------------
commit ff859a7f357d88ad4be3a66f1d07faa2ae291fa0
Author: Father Chrysostomos <spr...@cpan.org>
Date:   Wed Aug 10 13:00:51 2016 -0700

    pp_sort.c: Missing cast
    
    This is a compilation error under C++.
-----------------------------------------------------------------------

Summary of changes:
 pp_sort.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pp_sort.c b/pp_sort.c
index b68e80c..4f0553b 100644
--- a/pp_sort.c
+++ b/pp_sort.c
@@ -1596,7 +1596,7 @@ PP(pp_sort)
     /* shuffle stack down, removing optional initial cv (p1!=p2), plus
      * any nulls; also stringify or converting to integer or number as
      * required any args */
-    copytmps = PL_sortcop;
+    copytmps = cBOOL(PL_sortcop);
     for (i=max; i > 0 ; i--) {
        if ((*p1 = *p2++)) {                    /* Weed out nulls. */
            if (copytmps && SvPADTMP(*p1)) {

--
Perl5 Master Repository

Reply via email to