mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 00:34:18 +01:00
ircd::fs::aio: Fix bug.
This commit is contained in:
parent
6be111ac0b
commit
1bc1b3c207
1 changed files with 1 additions and 1 deletions
|
@ -495,7 +495,7 @@ ircd::fs::aio::system::cancel(request &request)
|
|||
|
||||
const auto eit
|
||||
{
|
||||
std::remove(begin(queue), end(queue), cb)
|
||||
std::remove(begin(queue), begin(queue) + qcount, cb)
|
||||
};
|
||||
|
||||
const auto qcount
|
||||
|
|
Loading…
Reference in a new issue