diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-08 13:17:39 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-08 13:17:39 +0100 |
| commit | 89fccd6056a4ff188f82ff8364aedcbf5b832bb1 (patch) | |
| tree | 85c3de0d5fdd345cb5707f3f1f96d77f214d4e27 /core | |
| parent | 38def33c95bec05ad5687fa074d7e26f2b1f923b (diff) | |
One more fix.
Diffstat (limited to 'core')
| -rw-r--r-- | core/text/table/utility.odin | 2 |
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 { |