diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-09-21 18:39:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-21 18:39:24 +0200 |
| commit | b1542d4e980f319955ade0903828fd034b22e7da (patch) | |
| tree | 51246118a0024b2f73fc6616be8019f148067dd1 | |
| parent | 29c5e390aa4e78715e1977a299ae3f3e4e9337e9 (diff) | |
| parent | d469c2da48594d1dfea99fea2a4bb1391809c055 (diff) | |
Merge pull request #2065 from yay/core-os-indent-fix
Fix indent
| -rw-r--r-- | core/os/os.odin | 2 |
1 files changed, 1 insertions, 1 deletions
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) |