From 518b68ee86aa4f8bdd28a7bd8b726f482239fbcc Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Wed, 17 Jul 2024 00:20:47 +0000 Subject: [PATCH] Forgot to (int) cast --- src/forder.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/forder.c b/src/forder.c index bf3db2dcb..70744d091 100644 --- a/src/forder.c +++ b/src/forder.c @@ -917,7 +917,7 @@ void radix_r(const int from, const int to, const int radix) { int *TMP = malloc(my_n * sizeof(int)); if (!TMP) { free(o); - STOP(_("Failed to allocate %d bytes for '%s'."), my_n * sizeof(int), "TMP"); + STOP(_("Failed to allocate %d bytes for '%s'."), (int)(my_n * sizeof(int)), "TMP"); } const int *restrict osub = anso+from; for (int i=0; i