summaryrefslogtreecommitdiff
path: root/src/display.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/display.c')
-rw-r--r--src/display.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/display.c b/src/display.c
index 2f147d5..39993ef 100644
--- a/src/display.c
+++ b/src/display.c
@@ -127,9 +127,9 @@ void putbyte(uint8_t c) {
void putbyte_ws(uint8_t c, bool show_whitespace) {
if (show_whitespace && c == '\t') {
- fputs("\x1b[90m → \x1b[0m", stdout);
+ fputs("\x1b[90m → \x1b[39m", stdout);
} else if (show_whitespace && c == ' ') {
- fputs("\x1b[90m·\x1b[0m", stdout);
+ fputs("\x1b[90m·\x1b[39m", stdout);
} else {
putbyte(c);
}