From 71ba6af7e16835307bd769bd64015d534715864b Mon Sep 17 00:00:00 2001 From: dario Date: Thu, 16 May 2024 20:09:51 +0200 Subject: [PATCH] Small change that I will probably regret --- src/debug/printing/printable.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/debug/printing/printable.cpp b/src/debug/printing/printable.cpp index 1ec2bb9..ca3410c 100644 --- a/src/debug/printing/printable.cpp +++ b/src/debug/printing/printable.cpp @@ -32,7 +32,8 @@ namespace sta vsnprintf(str, n+1, fmt, args); STA_ASSERT(n > 0); - println(str); + // If you are peer-reviewing this, ask Dario if this is supposed to stay here. + print(str); } void Printable::print(char c)