mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-02-06 20:00:54 +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
f2be30f699
commit
b71564f284
@ -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…
x
Reference in New Issue
Block a user