U-Boot: fix hex dump in fdt support

(cherry picked from my sam460ex branch)
This commit is contained in:
François Revol 2012-08-24 23:04:16 +02:00
parent 9b8ce8c462
commit 97bcc417ce
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}