This is an automated email from the git hooks/post-receive script.

abe pushed a commit to annotated tag v1.18
in repository libdevel-cover-perl.

commit b9c4c540956c4fec09ead904e24c3ec12aa39106
Author: Paul Johnson <p...@pjcj.net>
Date:   Thu Mar 26 00:36:37 2015 +0100

    Correct printf conversion type.
    
    Patch from Zefram (RT #103104).
---
 Cover.xs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cover.xs b/Cover.xs
index e26bc1d..f90e84c 100644
--- a/Cover.xs
+++ b/Cover.xs
@@ -588,8 +588,8 @@ static void dump_conditions(pTHX) {
         i = 2;
 #endif
 
-        PDEB(D(L, "  %s: op %p, next %p (%d)\n",
-               hex_key(key), next, addr, av_len(conds) - 1));
+        PDEB(D(L, "  %s: op %p, next %p (%ld)\n",
+               hex_key(key), next, addr, (long)av_len(conds) - 1));
 
         for (; i <= av_len(conds); i++) {
             OP  *op    = INT2PTR(OP *, SvIV(*av_fetch(conds, i, 0)));

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdevel-cover-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to