commit | 45f8e33a5bc59c679844140a749699f8a697b587 | [log] [tgz] |
---|---|---|
author | Michal Simek <michal.simek@xilinx.com> | Wed Feb 24 08:36:02 2016 +0100 |
committer | Tom Rini <trini@konsulko.com> | Wed Feb 24 18:44:14 2016 -0500 |
tree | 2b9f41bb34de083273a282b3c39efc297d0a1669 | |
parent | 3e6dc77bea50bbedcfea1d81f01a67134d368367 [diff] |
cmd: mem: Show 64bit addresses which are tested Fix print message to show full 64bit addresses. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
diff --git a/cmd/mem.c b/cmd/mem.c index efa3929..a690957 100644 --- a/cmd/mem.c +++ b/cmd/mem.c
@@ -1038,7 +1038,7 @@ return -1; } - printf("Testing %08x ... %08x:\n", (uint)start, (uint)end); + printf("Testing %08lx ... %08lx:\n", start, end); debug("%s:%d: start %#08lx end %#08lx\n", __func__, __LINE__, start, end);