On 9/12/20 1:14 AM, Alejandro Colomar wrote: > Signed-off-by: Alejandro Colomar <colomar.6.4.3@xxxxxxxxx> Thanks, Alex. Patch applied. Cheers, Michael > --- > man7/rtld-audit.7 | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/man7/rtld-audit.7 b/man7/rtld-audit.7 > index f90731261..b1b7dfebc 100644 > --- a/man7/rtld-audit.7 > +++ b/man7/rtld-audit.7 > @@ -508,7 +508,7 @@ This is reportedly fixed in glibc 2.10. > unsigned int > la_version(unsigned int version) > { > - printf("la_version(): %d\en", version); > + printf("la_version(): %u\en", version); > > return version; > } > @@ -572,7 +572,7 @@ la_symbind32(Elf32_Sym *sym, unsigned int ndx, uintptr_t *refcook, > { > printf("la_symbind32(): symname = %s; sym\->st_value = %p\en", > symname, sym\->st_value); > - printf(" ndx = %d; flags = %#x", ndx, *flags); > + printf(" ndx = %u; flags = %#x", ndx, *flags); > printf("; refcook = %p; defcook = %p\en", refcook, defcook); > > return sym\->st_value; > @@ -584,7 +584,7 @@ la_symbind64(Elf64_Sym *sym, unsigned int ndx, uintptr_t *refcook, > { > printf("la_symbind64(): symname = %s; sym\->st_value = %p\en", > symname, sym\->st_value); > - printf(" ndx = %d; flags = %#x", ndx, *flags); > + printf(" ndx = %u; flags = %#x", ndx, *flags); > printf("; refcook = %p; defcook = %p\en", refcook, defcook); > > return sym\->st_value; > -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/