16 Dec
2021
16 Dec
'21
1:32 a.m.
On Thu, Dec 16, 2021 at 5:30 AM Andrey Gusev <andrey.goosev(a)gmail.com> wrote:
- if ((unbounded = descriptor_count == UINT_MAX)) + if ((unbounded = descriptor_count) == UINT_MAX)
'unbounded' is a bool, so we do in fact want to assign it the value of descriptor_count == UINT_MAX, though for clarity it could use extra parentheses around the condition.