From 4e94b8d05f409902cecc3a98fb3804c66aeb7f91 Mon Sep 17 00:00:00 2001 From: Philippe Waroquiers Date: Sun, 14 Apr 2024 16:28:37 +0200 Subject: [PATCH] Avoid format '%u' expect unsigned int warning --- coregrind/m_errormgr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/coregrind/m_errormgr.c b/coregrind/m_errormgr.c index 3f8aa31b7..bac3f712a 100644 --- a/coregrind/m_errormgr.c +++ b/coregrind/m_errormgr.c @@ -976,10 +976,11 @@ static Bool show_used_suppressions ( void ) /* See pub_core_errormgr.h. */ void VG_(show_all_errors) ( Int verbosity, Bool xml, Int show_error_list) { - Int i, n_min, n_errs; + Int i, n_min; Error *p, *p_min; Bool any_supp; Bool any_error = False; + UInt n_errs; if (verbosity == 0 && show_error_list == 0) return; -- 2.47.2