mirror of https://github.com/adamdruppe/arsd.git
fix unreachable statement on Windows
This commit is contained in:
parent
ea099346ef
commit
9098eae233
2
cgi.d
2
cgi.d
|
@ -5914,8 +5914,8 @@ final class ScheduledJobServerImplementation : ScheduledJobServer, EventIoServer
|
||||||
throw new Exception("epoll_ctl " ~ to!string(errno));
|
throw new Exception("epoll_ctl " ~ to!string(errno));
|
||||||
|
|
||||||
jobs[nj] = job;
|
jobs[nj] = job;
|
||||||
|
return nj;
|
||||||
} else assert(0);
|
} else assert(0);
|
||||||
return nj;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void cancelJob(int jobId) {
|
protected void cancelJob(int jobId) {
|
||||||
|
|
Loading…
Reference in New Issue