aboutsummaryrefslogtreecommitdiffstats
path: root/man2/pidfd_open.2
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 /man2/pidfd_open.2
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 'man2/pidfd_open.2')
-rw-r--r--man2/pidfd_open.22
1 files changed, 1 insertions, 1 deletions
diff --git a/man2/pidfd_open.2 b/man2/pidfd_open.2
index ecdb98b1bb..0256d6d8cd 100644
--- a/man2/pidfd_open.2
+++ b/man2/pidfd_open.2
@@ -253,7 +253,7 @@ main(int argc, char *argv[])
exit(EXIT_FAILURE);
}
- printf("Events (0x%x): POLLIN is %sset\en", pollfd.revents,
+ printf("Events (%#x): POLLIN is %sset\en", pollfd.revents,
(pollfd.revents & POLLIN) ? "" : "not ");
close(pidfd);