aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2022-09-21 18:39:24 +0200
committerGitHub <noreply@github.com>2022-09-21 18:39:24 +0200
commitb1542d4e980f319955ade0903828fd034b22e7da (patch)
tree51246118a0024b2f73fc6616be8019f148067dd1
parent29c5e390aa4e78715e1977a299ae3f3e4e9337e9 (diff)
parentd469c2da48594d1dfea99fea2a4bb1391809c055 (diff)
Merge pull request #2065 from yay/core-os-indent-fix
Fix indent
-rw-r--r--core/os/os.odin2
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)