Fri, 24 Nov 2023 14:55:17 +0100
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
src/shell/hexdump.c
→
src/shell/hexdump.c
@@ -32,7 +32,7 @@ uint8_t c = in_buffer[i];
if (c < 0x20 || c > 0x7F) { c = '.'; } out_offset += sprintf(out_buffer + out_offset, "%c", c); } - out_offset += sprintf(out_buffer + out_offset, "\n"); + out_offset += sprintf(out_buffer + out_offset, "|\n"); fwrite(out_buffer, 1, out_offset, stdout); } }