fix(command): try to please linter
This commit is contained in:
parent
6d54893834
commit
552c0b58a5
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ int Command::wait()
|
|||
sprintf(msg, "got killed by signal %d (%s)", WTERMSIG(this->fork_status), StrSignalC(WTERMSIG(this->fork_status)));
|
||||
else if (WIFSTOPPED(this->fork_status))
|
||||
sprintf(msg, "stopped by signal %d (%s)", WSTOPSIG(this->fork_status), StrSignalC(WSTOPSIG(this->fork_status)));
|
||||
else if (WIFCONTINUED(this->fork_status))
|
||||
else if (WIFCONTINUED(this->fork_status) == true)
|
||||
sprintf(msg, "continued");
|
||||
|
||||
get_logger()->debug("Command "+ ToStr(msg));
|
||||
|
|
Loading…
Reference in a new issue