mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 23:58:50 +00:00
Fix typo
This commit is contained in:
+1
-1
@@ -69,7 +69,7 @@ alloc_bytes :: proc(size: int, alignment: int = DEFAULT_ALIGNMENT, allocator :=
|
|||||||
return runtime.mem_alloc(size, alignment, allocator, loc)
|
return runtime.mem_alloc(size, alignment, allocator, loc)
|
||||||
}
|
}
|
||||||
|
|
||||||
alloc_bytes_non_zerored :: proc(size: int, alignment: int = DEFAULT_ALIGNMENT, allocator := context.allocator, loc := #caller_location) -> ([]byte, Allocator_Error) {
|
alloc_bytes_non_zeroed :: proc(size: int, alignment: int = DEFAULT_ALIGNMENT, allocator := context.allocator, loc := #caller_location) -> ([]byte, Allocator_Error) {
|
||||||
return runtime.mem_alloc_non_zeroed(size, alignment, allocator, loc)
|
return runtime.mem_alloc_non_zeroed(size, alignment, allocator, loc)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user