From d469c2da48594d1dfea99fea2a4bb1391809c055 Mon Sep 17 00:00:00 2001 From: Vitaly Kravchenko Date: Wed, 21 Sep 2022 17:31:37 +0100 Subject: [PATCH] Fix indent --- core/os/os.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)