mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 05:35:20 +00:00
vmm: Remove unnecessary parentheses (beta 1.69 clippy check)
Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
parent
e397e739bf
commit
4203a61947
@ -159,7 +159,7 @@ impl PciSegment {
|
||||
|
||||
// There are 32 devices on the PCI bus, let's assign them an IRQ.
|
||||
for i in 0..32 {
|
||||
pci_irq_slots[i] = irqs[(i % num_irqs)];
|
||||
pci_irq_slots[i] = irqs[i % num_irqs];
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
Loading…
Reference in New Issue
Block a user