aboutsummaryrefslogtreecommitdiffstats
path: root/man7
diff options
context:
space:
mode:
authorAlejandro Colomar <colomar.6.4.3@gmail.com>2020-09-11 22:53:51 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2020-09-12 08:38:20 +0200
commitdc97703b4adb91ebf6ba405c8d2ee43ccf10c247 (patch)
treeb83e64c5e07291f96a8a63d1651d5924eaab0002 /man7
parentec8b00033c6b7e7c20e900334f4e9af391d823fe (diff)
downloadman-pages-dc97703b4adb91ebf6ba405c8d2ee43ccf10c247.tar.gz
eventfd.2, mprotect.2, pidfd_open.2, spu_run.2, timer_create.2, bswap.3, dl_iterate_phdr.3, endian.3, pthread_attr_init.3, pthread_getattr_np.3, vcs.4, rtld-audit.7: In printf(): s/0x%/%#/ except when followed by X instead of x
Use printf()'s '#' flag character to prepend the string "0x". However, when the number is printed in uppercase, and the prefix is in lowercase, the string "0x" needs to be manually written. Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com> Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man7')
-rw-r--r--man7/rtld-audit.74
1 files changed, 2 insertions, 2 deletions
diff --git a/man7/rtld-audit.7 b/man7/rtld-audit.7
index c6a4c19bfd..f90731261e 100644
--- a/man7/rtld-audit.7
+++ b/man7/rtld-audit.7
@@ -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 = 0x%x", ndx, *flags);
+ printf(" ndx = %d; 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 = 0x%x", ndx, *flags);
+ printf(" ndx = %d; flags = %#x", ndx, *flags);
printf("; refcook = %p; defcook = %p\en", refcook, defcook);
return sym\->st_value;