diff --git a/source/shell/flash.c b/source/shell/flash.c index 680459a..538b459 100644 --- a/source/shell/flash.c +++ b/source/shell/flash.c @@ -64,7 +64,7 @@ static void print_hex_ascii(const char *buf, size_t len) for (i = 0; i < 16; ++i) { c = (i < n) ? buf[i] : 0; - printf("%x", c); + printf("%02x ", c); } printf(" ");