| author | |
| committer | |
| log | 476d7d939cf7cc7b336d8f3b8ff1dad429cf343e |
| tree | 423890144cb3d01e4bd34f2ab15010b5da44935d |
| parent | 3c647ca6bb987c496652fd6bf279ef2625f41821 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Io/File.zig+1-1| ... | ... | @@ -215,7 +215,7 @@ pub fn openSelfExe(io: Io, flags: OpenFlags) OpenSelfExeError!File { |
| 215 | 215 | |
| 216 | 216 | pub const ReadPositionalError = Reader.Error || error{Unseekable}; |
| 217 | 217 | |
| 218 | pub fn readPositional(file: File, io: Io, buffer: []u8, offset: u64) ReadPositionalError!usize { | |
| 218 | pub fn readPositional(file: File, io: Io, buffer: [][]u8, offset: u64) ReadPositionalError!usize { | |
| 219 | 219 | return io.vtable.fileReadPositional(io.userdata, file, buffer, offset); |
| 220 | 220 | } |
| 221 | 221 |