| author | |
| committer | |
| log | 78a74ffaa65b527d0cf4303e4387071dd27cad14 |
| tree | 0936c95a6f8b0b6010eee592ee649d17b0bfc0cb |
| parent | 9a1c388a4408e4dab3871c5dcb83efcc709b7d7f |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
fixed_buffer_stream.zig+1-1| ... | ... | @@ -98,7 +98,7 @@ pub fn FixedBufferStream(comptime Buffer: type) type { |
| 98 | 98 | |
| 99 | 99 | pub fn anyWritable(self: *Self) nio.AnyWritable { |
| 100 | 100 | const S = struct { |
| 101 | fn write(s: *allowzero anyopaque, buffer: []u8) anyerror!usize { | |
| 101 | fn write(s: *allowzero anyopaque, buffer: []const u8) anyerror!usize { | |
| 102 | 102 | const fbs: *Self = @ptrCast(@alignCast(s)); |
| 103 | 103 | return fbs.write(buffer); |
| 104 | 104 | } |