From 9af1e1a3bf43140dee327eb4f553c56ba95ad9d9 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 1 Mar 2021 11:05:31 +0100 Subject: [PATCH] LibVT: New terminal cells should be filled with whitespace, not '\0' --- Userland/Libraries/LibVT/Line.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibVT/Line.h b/Userland/Libraries/LibVT/Line.h index 72e692a3da..5511edc9a5 100644 --- a/Userland/Libraries/LibVT/Line.h +++ b/Userland/Libraries/LibVT/Line.h @@ -89,7 +89,7 @@ public: ~Line(); struct Cell { - u32 code_point {}; + u32 code_point { ' ' }; Attribute attribute; };