[U-Boot] [PATCH 18/24] sandbox: Fix warning in display_options
Simon Glass
sjg at chromium.org
Mon May 4 19:31:11 CEST 2015
This fixes a warning in the print_buffer() function with some toolchains.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
lib/display_options.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/display_options.c b/lib/display_options.c
index d5d17b2..495a547 100644
--- a/lib/display_options.c
+++ b/lib/display_options.c
@@ -123,7 +123,7 @@ int print_buffer(ulong addr, const void *data, uint width, uint count,
else
x = lb.uc[i] = *(volatile uint8_t *)data;
#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
- printf(" %0*" PRIx64, width * 2, x);
+ printf(" %0*llx", width * 2, (long long)x);
#else
printf(" %0*x", width * 2, x);
#endif
--
2.2.0.rc0.207.ga3a616c
More information about the U-Boot
mailing list