From 5809b126603a0d5a3c7898dfac6d0fdad25609cd Mon Sep 17 00:00:00 2001 From: frief Date: Mon, 12 Jun 2006 12:33:35 +0000 Subject: [PATCH] fixed bug #1465675 (%x format specifier) git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4220 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- device/lib/printf_tiny.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device/lib/printf_tiny.c b/device/lib/printf_tiny.c index 4d70072d..46ef05fb 100644 --- a/device/lib/printf_tiny.c +++ b/device/lib/printf_tiny.c @@ -136,7 +136,7 @@ printf_format_c: printf_format_d: //cjne a, #'d', printf_format_u - cjne a, #100, printf_format_u + cjne a, #100, printf_format_x #ifndef ALWAYS_PRINT_UNSIGNED mov a, @r0 jnb acc.7, printf_uint -- 2.47.2