[libmath-prime-util-perl] 178/181: signed/unsigned warning

Partha P. Mukherjee ppm-guest at moszumanska.debian.org
Thu May 21 18:51:19 UTC 2015


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

ppm-guest pushed a commit to annotated tag v0.36
in repository libmath-prime-util-perl.

commit 0447ce3f823caaefb1b9e9d004c4c76595f9909f
Author: Dana Jacobsen <dana at acm.org>
Date:   Mon Jan 13 21:34:27 2014 -0800

    signed/unsigned warning
---
 Changes | 2 +-
 util.c  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Changes b/Changes
index 4644b4d..2c9ade8 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,6 @@
 Revision history for Perl module Math::Prime::Util
 
-0.36  2014-01
+0.36  2014-01-13
 
     [API Changes]
 
diff --git a/util.c b/util.c
index d15f24a..39e3e22 100644
--- a/util.c
+++ b/util.c
@@ -926,8 +926,8 @@ static const UV jordan_overflow[5] =
 #endif
 UV jordan_totient(UV k, UV n) {
   UV factors[MPU_MAX_FACTORS+1];
-  int nfac, i, j;
-  UV totient;
+  int nfac, i;
+  UV j, totient;
   if (k == 0 || n <= 1) return (n == 1);
   if (k > 6 || (k > 1 && n >= jordan_overflow[k-2])) return 0;
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libmath-prime-util-perl.git



More information about the Pkg-perl-cvs-commits mailing list