25 Sep
2023
25 Sep
'23
7:21 p.m.
On Mon Sep 25 18:27:45 2023 +0000, Rémi Bernon wrote:
```suggestion:-13+0 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. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3950#note_46689