diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-11-14 14:59:03 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-14 14:59:03 +0000 |
| commit | 360d93bfa1c4dd1fce19705cf532cf54feb173d3 (patch) | |
| tree | 84b90a922b4b89e00560631abffd56aacd075fb2 /core/bytes/buffer.odin | |
| parent | bd21b2cf49cc27515df911bc57397f8833035c73 (diff) | |
| parent | e4fcebe4bf715cf60ccb74f2a03abca995ca608f (diff) | |
Merge pull request #5928 from odin-lang/bill/io-error-changes
Move some OS General_Error values to io.Error
Diffstat (limited to 'core/bytes/buffer.odin')
| -rw-r--r-- | core/bytes/buffer.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bytes/buffer.odin b/core/bytes/buffer.odin index f4d883353..dd4b378c0 100644 --- a/core/bytes/buffer.odin +++ b/core/bytes/buffer.odin @@ -434,5 +434,5 @@ _buffer_proc :: proc(stream_data: rawptr, mode: io.Stream_Mode, p: []byte, offse case .Query: return io.query_utility({.Read, .Read_At, .Write, .Write_At, .Seek, .Size, .Destroy, .Query}) } - return 0, .Empty + return 0, .Unsupported } |