Browse Source

[os2/process]: Fix vet errors

flysand7 11 months ago
parent
commit
3119e0489f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/os/os2/process_windows.odin

+ 1 - 1
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 {