nix-eval-jobs: fix a clang-tidy lint

we don't run clang-tidy on nej in ci, but it's annoying locally.

Change-Id: I6f0ae3220425ac9e9f20adaf492873f8b27a630f
This commit is contained in:
eldritch horrors
2025-03-25 20:14:45 +01:00
parent c3929c78f3
commit 6bf8c8a4f2
@@ -216,10 +216,11 @@ void handleBrokenWorkerPipe(Proc &proc, std::string_view msg, bool retry = true)
"(possible infinite recursion)",
msg);
#endif
default:
throw Error(
"while %s, evaluation worker got killed by signal %d (%s)",
msg, WTERMSIG(status), strsignal(WTERMSIG(status)));
}
throw Error(
"while %s, evaluation worker got killed by signal %d (%s)",
msg, WTERMSIG(status), strsignal(WTERMSIG(status)));
} // else ignore WIFSTOPPED and WIFCONTINUED
}
}