semantic: 0.468 graphic: 0.416 vnc: 0.381 other: 0.366 instruction: 0.348 KVM: 0.329 device: 0.322 assembly: 0.309 boot: 0.301 network: 0.278 socket: 0.268 mistranslation: 0.227 hw/usb/dev-mtp.c:1616: bad test ? hw/usb/dev-mtp.c:1616:52: warning: logical ‘or’ of collectively exhaustive tests is always true [-Wlogical-op] Source code is if ((ret == -1) && (errno != EINTR || errno != EAGAIN || errno != EWOULDBLOCK)) { Maybe better code if ((ret == -1) && (errno != EINTR && errno != EAGAIN && errno != EWOULDBLOCK)) { On Fri, 19 Oct 2018 at 10:22, dcb