Esme Povirk (@madewokherd) commented about dlls/sane.ds/ui.c:
tpl->cx = ctl_cx; }
- if (class == 0x0085 && 0!=(styles & CBS_DROPDOWNLIST))
This way of checking a flag confuses me. I'd be OK with `(var & FLAG) != 0`, `!!(var & FLAG)`, or even just `(var & FLAG)`.