From: Philippe Waroquiers Date: Sun, 14 Apr 2024 14:28:37 +0000 (+0200) Subject: Avoid format '%u' expect unsigned int warning X-Git-Tag: VALGRIND_3_23_0~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e94b8d05f409902cecc3a98fb3804c66aeb7f91;p=thirdparty%2Fvalgrind.git Avoid format '%u' expect unsigned int warning --- 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;