commit | 85c8fc547b958bd139f26872cc2b14c546efbf0b | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sat May 08 07:00:00 2021 -0600 |
committer | Tom Rini <trini@konsulko.com> | Tue Jun 08 11:39:09 2021 -0400 |
tree | a6c532a9dce1e0f098f5f2d5d13bec476a8b0878 | |
parent | 4a249ba019b1ca2a9a26e36448badb682a043095 [diff] [blame] |
display_options: Drop two spaces before the ASCII column At present with print_buffer() U-Boot shows four spaces between the hex and ASCII data. Two seems enough and matches print_hex_dump(). Change it. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/test/ut.c b/test/ut.c index 350509a..1eec2a5 100644 --- a/test/ut.c +++ b/test/ut.c
@@ -151,7 +151,7 @@ if (str[8] != ':' || str[9] != ' ') return 1; - bytes = len - 8 - 2 - 3 * 16 - 4; + bytes = len - 8 - 2 - 3 * 16 - 2; upto += bytes; }