summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorMichael Brown2005-04-15 18:58:08 +0200
committerMichael Brown2005-04-15 18:58:08 +0200
commitc41e89af41b975d100b18397921f6a9e348b5dbc (patch)
tree5aa3c49251c79c268c95ad14bae9e8a39cf2c41d /src/core
parentFix debug message (diff)
downloadipxe-c41e89af41b975d100b18397921f6a9e348b5dbc.tar.gz
ipxe-c41e89af41b975d100b18397921f6a9e348b5dbc.tar.xz
ipxe-c41e89af41b975d100b18397921f6a9e348b5dbc.zip
Fixed debug message
Diffstat (limited to 'src/core')
-rw-r--r--src/core/dev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/dev.c b/src/core/dev.c
index 002fa7aa4..9c5368875 100644
--- a/src/core/dev.c
+++ b/src/core/dev.c
@@ -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;
}
}