Skip to content

Commit

Permalink
fixup! wip: fix C++20 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
graham33 committed Oct 22, 2022
1 parent 18e2a7a commit d70f8a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstore/build/worker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ void Worker::run(const Goals & _topGoals)
if (!children.empty() || !waitingForAWhile.empty())
waitForInput();
else {
if (awake.empty() && 0 == settings.maxBuildJobs)
if (awake.empty() && 0U == settings.maxBuildJobs)
{
if (getMachines().empty())
throw Error("unable to start any build; either increase '--max-jobs' "
Expand Down

0 comments on commit d70f8a5

Please sign in to comment.