diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-11-14 11:17:38 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-11-14 11:17:38 +0000 |
| commit | e4fcebe4bf715cf60ccb74f2a03abca995ca608f (patch) | |
| tree | 84b90a922b4b89e00560631abffd56aacd075fb2 /core/bufio | |
| parent | 51536fecf4859d61d2a0a786eb33ac4f2dc4fb73 (diff) | |
`Empty` -> `Unsupported`bill/io-error-changes
Diffstat (limited to 'core/bufio')
| -rw-r--r-- | core/bufio/read_writer.odin | 2 | ||||
| -rw-r--r-- | core/bufio/reader.odin | 2 | ||||
| -rw-r--r-- | core/bufio/writer.odin | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/bufio/read_writer.odin b/core/bufio/read_writer.odin index 3e6bd3aa0..84769b9a6 100644 --- a/core/bufio/read_writer.odin +++ b/core/bufio/read_writer.odin @@ -38,5 +38,5 @@ _read_writer_procedure := proc(stream_data: rawptr, mode: io.Stream_Mode, p: []b case .Query: return io.query_utility({.Flush, .Read, .Write, .Query}) } - return 0, .Empty + return 0, .Unsupported }
\ No newline at end of file diff --git a/core/bufio/reader.odin b/core/bufio/reader.odin index 4aa1e6c5d..7ab7da5b7 100644 --- a/core/bufio/reader.odin +++ b/core/bufio/reader.odin @@ -347,7 +347,7 @@ _reader_proc :: proc(stream_data: rawptr, mode: io.Stream_Mode, p: []byte, offse case .Query: return io.query_utility({.Read, .Destroy, .Query}) } - return 0, .Empty + return 0, .Unsupported } // diff --git a/core/bufio/writer.odin b/core/bufio/writer.odin index 9c73baf87..618264933 100644 --- a/core/bufio/writer.odin +++ b/core/bufio/writer.odin @@ -249,5 +249,5 @@ _writer_proc :: proc(stream_data: rawptr, mode: io.Stream_Mode, p: []byte, offse case .Query: return io.query_utility({.Flush, .Write, .Destroy, .Query}) } - return 0, .Empty + return 0, .Unsupported } |