diff options
Diffstat (limited to 'code/runtime.odin')
| -rw-r--r-- | code/runtime.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/runtime.odin b/code/runtime.odin index 4a440dc89..1d293b5f7 100644 --- a/code/runtime.odin +++ b/code/runtime.odin @@ -171,7 +171,7 @@ __string_ge :: proc(a, b : string) -> bool #inline { return __string_cmp(a, b) > __assert :: proc(msg: string) { - os.write(os.get_standard_file(os.File_Standard.ERROR), msg as []byte) + _ = os.write(os.get_standard_file(os.File_Standard.ERROR), msg as []byte) __debug_trap() } |