aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-08 13:17:39 +0100
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-08 13:17:39 +0100
commit89fccd6056a4ff188f82ff8364aedcbf5b832bb1 (patch)
tree85c3de0d5fdd345cb5707f3f1f96d77f214d4e27
parent38def33c95bec05ad5687fa074d7e26f2b1f923b (diff)
One more fix.
-rw-r--r--core/text/table/utility.odin2
1 files changed, 1 insertions, 1 deletions
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 {