From: Siddharth Vadapalli Date: Mon, 14 Aug 2023 04:53:48 +0000 (+0530) Subject: doc: printf() codes: Fix format specifier for unsigned int X-Git-Tag: v2023.10~31^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=68886a9941557f580fb650f39a76e7416b126534;p=platform%2Fkernel%2Fu-boot.git doc: printf() codes: Fix format specifier for unsigned int 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 Signed-off-by: Siddharth Vadapalli Reviewed-by: Tom Rini Reviewed-by: Heinrich Schuchardt Signed-off-by: Heinrich Schuchardt --- diff --git a/doc/develop/printf.rst b/doc/develop/printf.rst index 7b9aea0..99d0506 100644 --- a/doc/develop/printf.rst +++ b/doc/develop/printf.rst @@ -105,19 +105,19 @@ for the individual integer types. =================== ================== Type Format specifier =================== ================== -bool %d, %x +bool %d, %x char %d, %x 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 unsigned long long %llu, %llx off_t %llu, %llx -ptr_diff_t %td, %tx +ptr_diff_t %td, %tx fdt_addr_t %pa, see pointers fdt_size_t %pa, see pointers phys_addr_t %pa, see pointers