[PATCH 06/24] timer_create.2: Cast to 'unsigned long' rathen than 'long' when printing with "%lx"

From: Alejandro Colomar
Date: Thu Sep 10 2020 - 17:19:57 EST


Signed-off-by: Alejandro Colomar <colomar.6.4.3@xxxxxxxxx>
---
man2/timer_create.2 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/man2/timer_create.2 b/man2/timer_create.2
index e9a8b8503..9c9907739 100644
--- a/man2/timer_create.2
+++ b/man2/timer_create.2
@@ -390,7 +390,7 @@ print_siginfo(siginfo_t *si)
tidp = si\->si_value.sival_ptr;

printf(" sival_ptr = %p; ", si\->si_value.sival_ptr);
- printf(" *sival_ptr = 0x%lx\en", (long) *tidp);
+ printf(" *sival_ptr = 0x%lx\en", (unsigned long) *tidp);

or = timer_getoverrun(*tidp);
if (or == \-1)
@@ -454,7 +454,7 @@ main(int argc, char *argv[])
if (timer_create(CLOCKID, &sev, &timerid) == \-1)
errExit("timer_create");

- printf("timer ID is 0x%lx\en", (long) timerid);
+ printf("timer ID is 0x%lx\en", (unsigned long) timerid);

/* Start the timer */

--
2.28.0