Author: sbruno
Date: Sat Sep 27 10:57:34 2014
New Revision: 272210
URL: http://svnweb.freebsd.org/changeset/base/272210

Log:
  Update factor for changes to types in primes, which is a dependency.
  
  Fixes build-fail on mips32 introduced at 272207.

Modified:
  head/games/factor/factor.c

Modified: head/games/factor/factor.c
==============================================================================
--- head/games/factor/factor.c  Sat Sep 27 09:57:34 2014        (r272209)
+++ head/games/factor/factor.c  Sat Sep 27 10:57:34 2014        (r272210)
@@ -69,6 +69,7 @@ __FBSDID("$FreeBSD$");
 #include <ctype.h>
 #include <err.h>
 #include <errno.h>
+#include <inttypes.h>
 #include <limits.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -227,7 +228,7 @@ pr_fact(BIGNUM *val)
 
                /* Divide factor out until none are left. */
                do {
-                       printf(hflag ? " 0x%lx" : " %lu", *fact);
+                       printf(hflag ? " 0x%" PRIx64 "" : " %" PRIu64 "", 
*fact);
                        BN_div_word(val, (BN_ULONG)*fact);
                } while (BN_mod_word(val, (BN_ULONG)*fact) == 0);
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to