Fix syntax error introduced in previous commit where I removed one
character to few. I should have waited for the kernel compile to finish, even though the change seemed so trivial.
This commit is contained in:
parent
4008ad68fe
commit
d2cd7500c8
@ -711,7 +711,7 @@ pci_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *t
|
||||
for (cio->num_matches = 0, error = 0, i = 0,
|
||||
dinfo = STAILQ_FIRST(devlist_head);
|
||||
(dinfo != NULL) && (cio->num_matches < ionum) &&
|
||||
(error == 0) && (i < pci_numdevs));
|
||||
(error == 0) && (i < pci_numdevs);
|
||||
dinfo = STAILQ_NEXT(dinfo, pci_links), i++) {
|
||||
|
||||
if (i < cio->offset)
|
||||
|
Loading…
Reference in New Issue
Block a user