[PATCH v2 2/2] doc: printf() codes: Fix format specifier for unsigned int
Siddharth Vadapalli
s-vadapalli at ti.com
Mon Aug 14 06:53:48 CEST 2023
The format specifier for the "unsigned int" variable is documented as
"%d". However, it should be "%u". Thus, fix it.
Fixes: f5e9035043fb ("doc: printf() codes")
Reported-by: Tom Rini <trini at konsulko.com>
Signed-off-by: Siddharth Vadapalli <s-vadapalli at ti.com>
---
doc/develop/printf.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/develop/printf.rst b/doc/develop/printf.rst
index 7b9aea0687..05909a1f22 100644
--- a/doc/develop/printf.rst
+++ b/doc/develop/printf.rst
@@ -111,7 +111,7 @@ unsigned char %u, %x
short %d, %x
unsigned short %u, %x
int %d, %x
-unsigned int %d, %x
+unsigned int %u, %x
long %ld, %lx
unsigned long %lu, %lx
long long %lld, %llx
--
2.34.1
More information about the U-Boot
mailing list