aboutsummaryrefslogtreecommitdiff
path: root/core/fmt/fmt_js.odin
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-11-14 11:17:38 +0000
committergingerBill <gingerBill@users.noreply.github.com>2025-11-14 11:17:38 +0000
commite4fcebe4bf715cf60ccb74f2a03abca995ca608f (patch)
tree84b90a922b4b89e00560631abffd56aacd075fb2 /core/fmt/fmt_js.odin
parent51536fecf4859d61d2a0a786eb33ac4f2dc4fb73 (diff)
`Empty` -> `Unsupported`bill/io-error-changes
Diffstat (limited to 'core/fmt/fmt_js.odin')
-rw-r--r--core/fmt/fmt_js.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fmt/fmt_js.odin b/core/fmt/fmt_js.odin
index ce90fbfe7..4ec6bd9a8 100644
--- a/core/fmt/fmt_js.odin
+++ b/core/fmt/fmt_js.odin
@@ -19,7 +19,7 @@ write_stream_proc :: proc(stream_data: rawptr, mode: io.Stream_Mode, p: []byte,
write(fd, p)
return i64(len(p)), nil
}
- return 0, .Empty
+ return 0, .Unsupported
}
@(private="file")