From f8409e16777b1f26b77ab54a0a9574cc7ddb8958 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Fri, 18 May 2001 01:06:47 +0000 Subject: be sure to print pci vendor and id with 4 digits each --- mdk-stage1/probing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mdk-stage1/probing.c') diff --git a/mdk-stage1/probing.c b/mdk-stage1/probing.c index 8f537998f..5b366ca7b 100644 --- a/mdk-stage1/probing.c +++ b/mdk-stage1/probing.c @@ -160,7 +160,7 @@ static void probe_that_type(enum driver_type type) for (i = 0; i < len; i++) { if (pcidb[i].vendor == vendor && pcidb[i].device == device) { - log_message("PCI: device %x %x is \"%s\" (%s)", vendor, device, pcidb[i].name, pcidb[i].module); + log_message("PCI: device %04x %04x is \"%s\" (%s)", vendor, device, pcidb[i].name, pcidb[i].module); #ifndef DISABLE_MEDIAS if (type == SCSI_ADAPTERS) { stg1_info_message("About to load driver for SCSI adapter:\n \n%s", pcidb[i].name); -- cgit v1.2.1