Skip to content

Commit

Permalink
fixed comment error
Browse files Browse the repository at this point in the history
  • Loading branch information
justanhduc committed Oct 29, 2020
1 parent a4cc7fe commit e0c81d8
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; // broadcasted "fake news"
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; // broadcasted "fake news"
notified->dependency_errorlevel = 0; /* broadcasted "fake news" */
}
}
}
Expand Down

0 comments on commit e0c81d8

Please sign in to comment.