diff --git a/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c b/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c index 541f33a7e73..ebe3e5024cf 100644 --- a/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c +++ b/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c @@ -222,7 +222,7 @@ DetectPciBios(PCONFIGURATION_COMPONENT_DATA SystemKey, ULONG *BusNumber) 0x0, 0x0, 0xFFFFFFFF, - "PCI BIOS" + "PCI BIOS", &BiosKey); /* Increment bus number */ diff --git a/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c b/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c index 4f195712bbb..1bdf287448d 100644 --- a/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c +++ b/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c @@ -102,7 +102,6 @@ GetHarddiskIdentifier(PCHAR Identifier, ULONG i; ULONG Checksum; ULONG Signature; - CHAR Identifier[20]; CHAR ArcName[256]; /* Read the MBR */ diff --git a/reactos/boot/freeldr/freeldr/reactos/archwsup.c b/reactos/boot/freeldr/freeldr/reactos/archwsup.c index d38d726588d..f7d4e093509 100644 --- a/reactos/boot/freeldr/freeldr/reactos/archwsup.c +++ b/reactos/boot/freeldr/freeldr/reactos/archwsup.c @@ -160,11 +160,11 @@ FldrCreateComponentKey(IN PCONFIGURATION_COMPONENT_DATA SystemNode, Component->Type = Type; Component->Flags = Flags; Component->Key = Key; - Component->Affinity = Affinity; + Component->AffinityMask = Affinity; /* Set identifier */ - if (Identifier) - FldrSetIdentifier(ComponentData, Identifier); + if (IdentifierString) + FldrSetIdentifier(ComponentData, IdentifierString); /* Return the child */ *ComponentKey = ComponentData;