From 97bcc417ce97b40f0297871bb3054460add8bd7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Fri, 24 Aug 2012 23:04:16 +0200 Subject: [PATCH] U-Boot: fix hex dump in fdt support (cherry picked from my sam460ex branch) --- src/system/boot/platform/u-boot/fdt_support.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/boot/platform/u-boot/fdt_support.cpp b/src/system/boot/platform/u-boot/fdt_support.cpp index cd7583dfd6..96cec5411a 100644 --- a/src/system/boot/platform/u-boot/fdt_support.cpp +++ b/src/system/boot/platform/u-boot/fdt_support.cpp @@ -46,7 +46,7 @@ static void dump_hex(const char *data, int32 len, int depth) astr[i % 16] = isprint(data[i]) ? data[i] : '.'; astr[(i % 16) + 1] = '\0'; } - dprintf(DS" %-32.32s %s\n", DA, str, astr); + dprintf(DS" %-48.48s %s\n", DA, str, astr); } }