Merge pull request #2065 from yay/core-os-indent-fix

Fix indent
This commit is contained in:
Jeroen van Rijn
2022-09-21 18:39:24 +02:00
committed by GitHub

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)