fix index -> image_index

This commit is contained in:
Isaac Connor
2021-10-17 15:13:14 -04:00
parent 3f6d6fe7a0
commit e1d49ea172

View File

@@ -260,7 +260,7 @@ void PacketQueue::clearPackets(const std::shared_ptr<ZMPacket> &add_packet) {
zm_packet = *it;
lp = new ZMLockedPacket(zm_packet);
if (!lp->trylock()) {
Debug(3, "Failed locking packet %d", zm_packet->index);
Debug(3, "Failed locking packet %d", zm_packet->image_index);
delete lp;
break;
}