semantic: 0.468 permissions: 0.459 graphic: 0.416 PID: 0.414 debug: 0.402 performance: 0.384 vnc: 0.381 other: 0.366 KVM: 0.329 device: 0.322 boot: 0.301 files: 0.282 network: 0.278 socket: 0.268 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