From 89fccd6056a4ff188f82ff8364aedcbf5b832bb1 Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Sun, 8 Feb 2026 13:17:39 +0100 Subject: [PATCH] One more fix. --- core/text/table/utility.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/text/table/utility.odin b/core/text/table/utility.odin index 99fd7d7ca..e361d0f5f 100644 --- a/core/text/table/utility.odin +++ b/core/text/table/utility.odin @@ -5,7 +5,7 @@ import os "core:os/os2" import "core:strings" stdio_writer :: proc() -> io.Writer { - return os.stdout.stream + return os.to_stream(os.stdout) } strings_builder_writer :: proc(b: ^strings.Builder) -> io.Writer {