0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-08 21:18:57 +02:00

ircd::gpt::samp: Sample is done when dispatch=0 on interrupt without accept.

This commit is contained in:
Jason Volk 2022-08-20 17:45:33 -07:00
parent 02cd570b5e
commit a2826400a8

View file

@ -842,7 +842,7 @@ bool
ircd::gpt::samp::done()
const noexcept
{
return accept >= 0;
return accept >= 0 || !dispatch;
}
uint