fix(command): try to please linter

This commit is contained in:
Michael Carlberg 2016-06-11 13:48:19 +02:00
parent 6d54893834
commit 552c0b58a5

View file

@ -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));