On Mon Sep 25 18:27:45 2023 +0000, Rémi Bernon wrote:
switch (item->type) { case WORK_ITEM_WORK: if (item->u.work_object) CloseThreadpoolWork(item->u.work_object); break; case WORK_ITEM_WAIT: if (item->u.wait_object) CloseThreadpoolWait(item->u.wait_object); break; case WORK_ITEM_TIMER: if (item->u.timer_object) CloseThreadpoolTimer(item->u.timer_object); break; }
The switch needs a space and the brace is still misplaced.