mirror of https://github.com/adamdruppe/arsd.git
Merge pull request #222 from dkorpel/master
Fix unreachable statement on Windows
This commit is contained in:
commit
a402c6eaa2
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