From 04690bd47b117c51503d70aedc1bdfedfd8122d6 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 28 Oct 2015 01:11:00 +0000 Subject: [PATCH] [PCIX] - Fix typo in QueryInterface size field svn path=/trunk/; revision=69727 --- reactos/drivers/bus/pcix/pci/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/drivers/bus/pcix/pci/config.c b/reactos/drivers/bus/pcix/pci/config.c index bacd08162bc..def8ee4daf0 100644 --- a/reactos/drivers/bus/pcix/pci/config.c +++ b/reactos/drivers/bus/pcix/pci/config.c @@ -173,7 +173,7 @@ PciQueryForPciBusInterface(IN PPCI_FDO_EXTENSION FdoExtension) ASSERT(IoStackLocation->MajorFunction == IRP_MJ_PNP); IoStackLocation->MinorFunction = IRP_MN_QUERY_INTERFACE; IoStackLocation->Parameters.QueryInterface.InterfaceType = &GUID_PCI_BUS_INTERFACE_STANDARD; - IoStackLocation->Parameters.QueryInterface.Size = sizeof(GUID_PCI_BUS_INTERFACE_STANDARD); + IoStackLocation->Parameters.QueryInterface.Size = sizeof(PCI_BUS_INTERFACE_STANDARD); IoStackLocation->Parameters.QueryInterface.Version = PCI_BUS_INTERFACE_STANDARD_VERSION; IoStackLocation->Parameters.QueryInterface.Interface = (PINTERFACE)PciInterface; IoStackLocation->Parameters.QueryInterface.InterfaceSpecificData = NULL;