]> sourceware.org Git - debugedit.git/commitdiff
debugedit: Use 'z', not 'Z' as conversion specifier
authorMark Wielaard <mark@klomp.org>
Thu, 23 Mar 2023 16:08:45 +0000 (17:08 +0100)
committerMark Wielaard <mark@klomp.org>
Thu, 23 Mar 2023 16:08:57 +0000 (17:08 +0100)
Both are valid for size_t but 'z' is the standard one.

Signed-off-by: Mark Wielaard <mark@klomp.org>
tools/debugedit.c

index b3422d72539b4fd8aa4a08ac2a215f29a803b109..3d75b8f2eca41e45ff6f1f62c63ead4583177fa5 100644 (file)
@@ -3185,7 +3185,7 @@ handle_build_id (DSO *dso, Elf_Data *build_id,
 
   if (build_id_size != 16 && build_id_size != 20)
     {
-      error (1, 0, "Cannot handle %Zu-byte build ID", build_id_size);
+      error (1, 0, "Cannot handle %zu-byte build ID", build_id_size);
     }
 
   int i = -1;
This page took 0.029323 seconds and 5 git commands to generate.