clang-format all files

This commit is contained in:
ridiculousfish
2019-06-03 20:30:48 -07:00
parent d1fc8d5f71
commit fc99d6c7af
13 changed files with 30 additions and 28 deletions

View File

@@ -924,7 +924,7 @@ void proc_sanity_check(const parser_t &parser) {
if (j->is_foreground() && !(j->is_stopped() || j->is_completed())) {
if (fg_job) {
FLOGF(error, _(L"More than one job in foreground: job 1: '%ls' job 2: '%ls'"),
fg_job->command_wcstr(), j->command_wcstr());
fg_job->command_wcstr(), j->command_wcstr());
sanity_lose();
}
fg_job = j.get();
@@ -938,13 +938,13 @@ void proc_sanity_check(const parser_t &parser) {
if ((p->stopped & (~0x00000001)) != 0) {
FLOGF(error, _(L"Job '%ls', process '%ls' has inconsistent state \'stopped\'=%d"),
j->command_wcstr(), p->argv0(), p->stopped);
j->command_wcstr(), p->argv0(), p->stopped);
sanity_lose();
}
if ((p->completed & (~0x00000001)) != 0) {
FLOGF(error, _(L"Job '%ls', process '%ls' has inconsistent state \'completed\'=%d"),
j->command_wcstr(), p->argv0(), p->completed);
j->command_wcstr(), p->argv0(), p->completed);
sanity_lose();
}
}