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:
Stefan Eßer 2016-02-19 16:53:21 +00:00
parent 755ae20cd7
commit 5a1a8ad938
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=295816

View File

@ -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)