david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Fixed debug message

This commit is contained in:
Michael Brown 2005-04-15 16:58:08 +00:00
parent 39cb4d8dbb
commit c41e89af41
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ int find_boot_device ( struct dev *dev ) {
if ( boot_driver->find_bus_boot_device ( dev,
boot_driver->bus_driver ) ) {
DBG ( "Found device %s (ID %hhx:%hx:%hx)\n",
dev->name, dev->devid->bus_type,
dev->devid->vendor_id, dev->devid->device_id );
dev->name, dev->devid.bus_type,
dev->devid.vendor_id, dev->devid.device_id );
return 1;
}
}