Use LIST_* not SLIST_*.

This commit is contained in:
Nicholas Marriott
2011-01-26 00:11:47 +00:00
parent ecc22c521d
commit 4dfb29fa38
5 changed files with 14 additions and 14 deletions

View File

@ -415,7 +415,7 @@ server_child_exited(pid_t pid, int status)
}
}
SLIST_FOREACH(job, &all_jobs, lentry) {
LIST_FOREACH(job, &all_jobs, lentry) {
if (pid == job->pid) {
job_died(job, status); /* might free job */
break;