qemu-usb: improve isochronous error message

This commit is contained in:
Christian Helmuth 2024-07-26 11:25:01 +02:00
parent 32b7a91c19
commit f3217f6ab3

View File

@ -535,7 +535,7 @@ void Isoc_cache::_copy_to_host(USBPacket *p)
size_t offset = _wrote * _ep.max_packet_size();
if (size > _ep.max_packet_size()) {
error("Assumption about QEmu Isochronous out packets wrong!");
error("Assumption about QEmu Isochronous out packets wrong (size=", size, " max=", _ep.max_packet_size(), ")!");
size = _ep.max_packet_size();
}