In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/ee4b19b959afbc7b1778ed123bdc8612e6fb0cd6?hp=e5c5b1c9e1022d343db093f5d2af6fb39e6d1e30>

- Log -----------------------------------------------------------------
commit ee4b19b959afbc7b1778ed123bdc8612e6fb0cd6
Author: David Mitchell <[email protected]>
Date:   Fri Jul 1 11:22:51 2016 +0100

    op_lvalue_flags(): silence compiler warning
    
    op.c:3071:4: warning: enumeral and non-enumeral type in conditional
                 expression [-Wextra]
-----------------------------------------------------------------------

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

diff --git a/op.c b/op.c
index fccb5f6..46e76ac 100644
--- a/op.c
+++ b/op.c
@@ -3068,7 +3068,7 @@ Perl_op_lvalue_flags(pTHX_ OP *o, I32 type, U32 flags)
               in error messages.  */
            op_lvalue(OpSIBLING(cBINOPo->op_first),
                      S_potential_mod_type(type)
-                       ? OP_ENTERSUB
+                       ? (I32)OP_ENTERSUB
                        : o->op_type);
        }
        break;

--
Perl5 Master Repository

Reply via email to