make c-code match comment

This commit is contained in:
jwrdegoede
2005-05-10 08:17:40 +00:00
parent 4c00987aa2
commit 292e2fba9c

View File

@@ -650,8 +650,8 @@ pciFindCardMulti(FxU32 vendorID, FxU32 deviceID,
pciGetConfigData( PCI_VENDOR_ID, deviceNumber, &vID );
pciGetConfigData( PCI_DEVICE_ID, deviceNumber, &dID );
// Quick optimization, if there is no device or vendor ID...
if ((!dID) && (!dID))
/* Quick optimization, if there is no device or vendor ID... */
if ((!dID) || (!vID))
continue;
if (deviceID == 0xFFFF) /* if special value */