Skip to content

Commit

Permalink
added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
justanhduc committed Oct 29, 2020
1 parent 7757fd6 commit a4cc7fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jobs.c
Original file line number Diff line number Diff line change
Expand Up @@ -922,15 +922,15 @@ void notify_errorlevel(struct Job *p)
{
int i;

last_errorlevel = 0;
last_errorlevel = 0; // broadcasted "fake news"

for(i = 0; i < p->notify_errorlevel_to_size; ++i)
{
struct Job *notified;
notified = get_job(p->notify_errorlevel_to[i]);
if (notified)
{
notified->dependency_errorlevel = 0;
notified->dependency_errorlevel = 0; // broadcasted "fake news"
}
}
}
Expand Down

0 comments on commit a4cc7fe

Please sign in to comment.