From: Michael Brown Date: Fri, 15 Apr 2005 16:58:08 +0000 (+0000) Subject: Fixed debug message X-Git-Tag: v0.9.3~1926 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c41e89af41b975d100b18397921f6a9e348b5dbc;p=thirdparty%2Fipxe.git Fixed debug message --- 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; } }