diff --git a/core/os/os.odin b/core/os/os.odin index 5e71e720e..1d8845da7 100644 --- a/core/os/os.odin +++ b/core/os/os.odin @@ -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)