From 1d322705d09870afa51c2852c145907ef79f2f93 Mon Sep 17 00:00:00 2001 From: SuperNovaa41 Date: Fri, 7 Feb 2025 12:33:19 -0500 Subject: [PATCH] fixes spacing issue --- src/hex.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hex.c b/src/hex.c index 30b02d7..f869844 100644 --- a/src/hex.c +++ b/src/hex.c @@ -74,6 +74,8 @@ void display_hex_chunk(hex_chunk_t* chunk, FILE* stream) newline = false; } + fprintf(stream, " "); + for (i = 0; i < flags.cols; i++) { if (chunk->text[i] == '\n' || chunk->text[i] == EOF) newline = true;