mirror of
https://github.com/neovim/neovim.git
synced 2025-10-22 17:11:49 +00:00
*: Fix new linter errors
Originally there were 128 new errors, so I thought this is a good idea to fix all of them. Of course, this commit also fixes many suppressed errors.
This commit is contained in:
@@ -187,9 +187,9 @@ int process_wait(Process *proc, int ms, Queue *events) FUNC_ATTR_NONNULL_ARG(1)
|
||||
// being freed) before we have a chance to get the status.
|
||||
proc->refcount++;
|
||||
LOOP_PROCESS_EVENTS_UNTIL(proc->loop, events, ms,
|
||||
// Until...
|
||||
got_int || // interrupted by the user
|
||||
proc->refcount == 1); // job exited
|
||||
// Until...
|
||||
got_int // interrupted by the user
|
||||
|| proc->refcount == 1); // job exited
|
||||
|
||||
// we'll assume that a user frantically hitting interrupt doesn't like
|
||||
// the current job. Signal that it has to be killed.
|
||||
|
Reference in New Issue
Block a user