From 13e0e8b022004730f0b94814edeeeffd04ee0cdd Mon Sep 17 00:00:00 2001
From: Dominik Loidolt <dominik.loidolt@univie.ac.at>
Date: Thu, 3 Nov 2022 12:41:02 +0100
Subject: [PATCH] fix a warning for the sparc compiler

---
 lib/cmp_support.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/cmp_support.c b/lib/cmp_support.c
index eb1c730..a279a04 100644
--- a/lib/cmp_support.c
+++ b/lib/cmp_support.c
@@ -503,7 +503,7 @@ int cmp_cfg_gen_par_is_invalid(const struct cmp_cfg *cfg, enum check_opt opt)
 	}
 
 	if (cfg->round > max_round_value) {
-		debug_print("Error: selected lossy parameter: %" PRIu32 " is not supported%s. The largest supported value is: %u.\n",
+		debug_print("Error: selected lossy parameter: %" PRIu32 " is not supported%s. The largest supported value is: %" PRIu32 ".\n",
 			    cfg->round, str, max_round_value);
 		cfg_invalid++;
 	}
-- 
GitLab