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 5370db0812d245ea6b0b22a0a13646cdb1e2e8fb
Author: Dana Jacobsen <d...@acm.org>
Date:   Wed Jan 8 17:24:08 2014 -0800

    decl after code fix
---
 factor.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/factor.c b/factor.c
index addd4dd..d679550 100644
--- a/factor.c
+++ b/factor.c
@@ -232,9 +232,9 @@ int trial_factor(UV n, UV *factors, UV maxtrial)
     }
     /* Trial division using a mod-30 wheel for larger values */
     if (f*f <= n && f <= maxtrial) {
-      UV newlimit, limit = isqrt(n);
+      UV m, newlimit, limit = isqrt(n);
       if (limit > maxtrial) limit = maxtrial;
-      UV m = f % 30;
+      m = f % 30;
       while (f <= limit) {
         if ( (n%f) == 0 ) {
           do {

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmath-prime-util-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