From 08c298808b13c3b513ddf6d87fefc48421715889 Mon Sep 17 00:00:00 2001 From: "WP. Yingamphol" <145095511+peperronii@users.noreply.github.com> Date: Tue, 15 Jul 2025 09:29:10 +0700 Subject: [PATCH] spacing Co-authored-by: Laytan --- core/thread/thread_unix.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")