From e4fcebe4bf715cf60ccb74f2a03abca995ca608f Mon Sep 17 00:00:00 2001 From: gingerBill Date: Fri, 14 Nov 2025 11:17:38 +0000 Subject: `Empty` -> `Unsupported` --- core/strings/builder.odin | 2 +- core/strings/reader.odin | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'core/strings') diff --git a/core/strings/builder.odin b/core/strings/builder.odin index 285ced9ce..a6d0b24b3 100644 --- a/core/strings/builder.odin +++ b/core/strings/builder.odin @@ -182,7 +182,7 @@ _builder_stream_proc :: proc(stream_data: rawptr, mode: io.Stream_Mode, p: []byt case .Query: return io.query_utility({.Write, .Size, .Destroy, .Query}) } - return 0, .Empty + return 0, .Unsupported } /* diff --git a/core/strings/reader.odin b/core/strings/reader.odin index bb49bf917..0d467f285 100644 --- a/core/strings/reader.odin +++ b/core/strings/reader.odin @@ -310,5 +310,5 @@ _reader_proc :: proc(stream_data: rawptr, mode: io.Stream_Mode, p: []byte, offse case .Query: return io.query_utility({.Size, .Read, .Read_At, .Seek, .Query}) } - return 0, .Empty + return 0, .Unsupported } -- cgit v1.2.3