From c41e89af41b975d100b18397921f6a9e348b5dbc Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Fri, 15 Apr 2005 16:58:08 +0000 Subject: [PATCH] Fixed debug message --- src/core/dev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/dev.c b/src/core/dev.c index 002fa7aa..9c536887 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; } }