summaryrefslogtreecommitdiff
path: root/src/make-prime-list.c
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2012-10-30 02:15:36 +0000
committerPádraig Brady <P@draigBrady.com>2012-11-04 00:49:04 +0000
commit6108baa47e90aaefb83eb230e2e063906ca14e87 (patch)
treec05898f88e424ba2d4c2fd01ec0584255ea205c0 /src/make-prime-list.c
parent1411022cf23d81bac8176b06008898439a2c1a59 (diff)
downloadcoreutils-6108baa47e90aaefb83eb230e2e063906ca14e87.tar.xz
build: don't assume uintmax_t is 64 bits
This was not seen to be an issue in practise, but to make the code more robust, don't assume uintmax_t is 64 bits. * src/factor.c (W_TYPE_SIZE): Define based on integer limits. * src/make-prime-list.c (output_primes): Define format width based on integer limits.
Diffstat (limited to 'src/make-prime-list.c')
-rw-r--r--src/make-prime-list.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/make-prime-list.c b/src/make-prime-list.c
index 98eef8f59..a4c0a3b7b 100644
--- a/src/make-prime-list.c
+++ b/src/make-prime-list.c
@@ -78,12 +78,20 @@ output_primes (const struct prime *primes, unsigned nprimes)
exit (EXIT_FAILURE);
}
+#if UINTMAX_MAX == UINT32_MAX
+# define SZ "8" /* 8 hex digits. */
+#elif UINTMAX_MAX == UINT64_MAX
+# define SZ "16" /* 16 hex digits. */
+#elif UINTMAX_MAX == UINT128_MAX
+# define SZ "32" /* 32 hex digits. */
+#endif
+
for (i = 0, p = 2; i < nprimes; i++)
{
unsigned int d8 = i + 8 < nprimes ? primes[i + 8].p - primes[i].p : 0xff;
if (255 < d8) /* this happens at 668221 */
abort ();
- printf ("P (%2u, %3u, 0x%016"PRIxMAX"%s, 0x%016"PRIxMAX"%s) /* %d */\n",
+ printf ("P (%2u, %3u, 0x%0"SZ PRIxMAX"%s, 0x%0"SZ PRIxMAX"%s) /* %d */\n",
primes[i].p - p, d8,
primes[i].pinv, suffix,
primes[i].lim, suffix, primes[i].p);