Browse Source

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

Fix indent
Jeroen van Rijn 2 years ago
parent
commit
b1542d4e98
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/os/os.odin

+ 1 - 1
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)