From 3119e0489fbd9c9c2c4010c500d03c66128d177b Mon Sep 17 00:00:00 2001 From: flysand7 Date: Mon, 26 Aug 2024 07:23:59 +1100 Subject: [PATCH] [os2/process]: Fix vet errors --- core/os/os2/process_windows.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/os/os2/process_windows.odin b/core/os/os2/process_windows.odin index 0104f3753..edb321509 100644 --- a/core/os/os2/process_windows.odin +++ b/core/os/os2/process_windows.odin @@ -375,7 +375,7 @@ _current_process_info :: proc(selection: Process_Info_Fields, allocator: runtime read_username: if .Username in selection { process_handle := win32.GetCurrentProcess() username: string - username, err := _get_process_user(process_handle, allocator) + username, err = _get_process_user(process_handle, allocator) if _, ok := err.(runtime.Allocator_Error); ok { return } else if err != nil {