diff options
| author | hikari <ftphikari@gmail.com> | 2022-04-07 12:24:53 +0300 |
|---|---|---|
| committer | hikari <ftphikari@gmail.com> | 2022-04-07 12:24:53 +0300 |
| commit | ad90f416a59be22dbf8fca89890a70407dc5826c (patch) | |
| tree | db93f4b58f09a462f8e2853a16ee3bda82fa6caf | |
| parent | 698fcb7813dd391de76a5663ee64c48ce4f7d067 (diff) | |
runtime: fix typo
| -rw-r--r-- | core/runtime/core.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin index a5a190a9c..4ab21d8cf 100644 --- a/core/runtime/core.odin +++ b/core/runtime/core.odin @@ -565,7 +565,7 @@ __init_context :: proc "contextless" (c: ^Context) { return } - // NOTE(bill): Do not initialize these procedures with a call as they are not defined with the "contexless" calling convention + // NOTE(bill): Do not initialize these procedures with a call as they are not defined with the "contextless" calling convention c.allocator.procedure = default_allocator_proc c.allocator.data = nil |