U-Boot: fix hex dump in fdt support

(cherry picked from my sam460ex branch)
This commit is contained in:
François Revol
2012-11-04 16:40:16 +01:00
parent 9b8ce8c462
commit 97bcc417ce
@@ -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);
}
}