diff --git a/core/thread/thread_unix.odin b/core/thread/thread_unix.odin index 37df05046..bda59482d 100644 --- a/core/thread/thread_unix.odin +++ b/core/thread/thread_unix.odin @@ -183,7 +183,7 @@ _yield :: proc() { posix.sched_yield() } -_get_name :: proc(thread: ^Thread, allocator: runtime.Allocator, loc: runtime.Source_Code_Location) -> (name:string, err:runtime.Allocator_Error) { +_get_name :: proc(thread: ^Thread, allocator: runtime.Allocator, loc: runtime.Source_Code_Location) -> (name: string, err: runtime.Allocator_Error) { // Haiku doesn't have pthread_getname yet when ODIN_OS == .Haiku { unimplemented("core:thread get_name for haiku is not yet supported")