mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
Fix warning about conversion on mingw64
This commit is contained in:
@@ -131,7 +131,7 @@ int pty_process_spawn(PtyProcess *ptyproc)
|
||||
}
|
||||
goto cleanup;
|
||||
}
|
||||
proc->pid = GetProcessId(process_handle);
|
||||
proc->pid = (int)GetProcessId(process_handle);
|
||||
|
||||
if (!RegisterWaitForSingleObject(
|
||||
&ptyproc->finish_wait,
|
||||
|
Reference in New Issue
Block a user