]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Avoid format '%u' expect unsigned int warning
authorPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Sun, 14 Apr 2024 14:28:37 +0000 (16:28 +0200)
committerPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Sun, 14 Apr 2024 14:29:53 +0000 (16:29 +0200)
coregrind/m_errormgr.c

index 3f8aa31b7f66dd240a435c297559a1c8b9904bb8..bac3f712af144350558d21d5806abd2a6f5810f7 100644 (file)
@@ -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;