[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200910211344.3562-3-colomar.6.4.3@gmail.com>
Date: Thu, 10 Sep 2020 23:13:23 +0200
From: Alejandro Colomar <colomar.6.4.3@...il.com>
To: mtk.manpages@...il.com
Cc: linux-man@...r.kernel.org, linux-kernel@...r.kernel.org,
Alejandro Colomar <colomar.6.4.3@...il.com>
Subject: [PATCH 02/24] endian.3: Use 'PRIx32' rather than "%x" when printing 'uint32_t' values
Signed-off-by: Alejandro Colomar <colomar.6.4.3@...il.com>
---
man3/endian.3 | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/man3/endian.3 b/man3/endian.3
index bdf1efd7e..3a898bb02 100644
--- a/man3/endian.3
+++ b/man3/endian.3
@@ -147,6 +147,7 @@ htobe32(x.u32) = 0x11223344
\&
.EX
#include <endian.h>
+#include <inttypes.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
@@ -164,9 +165,9 @@ main(int argc, char *argv[])
x.arr[2] = 0x33;
x.arr[3] = 0x44; /* Highest-address byte */
- printf("x.u32 = 0x%x\en", x.u32);
- printf("htole32(x.u32) = 0x%x\en", htole32(x.u32));
- printf("htobe32(x.u32) = 0x%x\en", htobe32(x.u32));
+ printf("x.u32 = 0x%"PRIx32"\en", x.u32);
+ printf("htole32(x.u32) = 0x%"PRIx32"\en", htole32(x.u32));
+ printf("htobe32(x.u32) = 0x%"PRIx32"\en", htobe32(x.u32));
exit(EXIT_SUCCESS);
}
--
2.28.0
Powered by blists - more mailing lists