Fix indent

This commit is contained in:
Vitaly Kravchenko
2022-09-21 17:31:37 +01:00
parent 9842019205
commit d469c2da48

View File

@@ -120,7 +120,7 @@ read_entire_file_from_handle :: proc(fd: Handle, allocator := context.allocator)
data = make([]byte, int(length), allocator)
if data == nil {
return nil, false
return nil, false
}
bytes_read, read_err := read_full(fd, data)