Author: hpoussin Date: Sun Aug 9 10:24:22 2009 New Revision: 42546
URL: http://svn.reactos.org/svn/reactos?rev=42546&view=rev Log: Fix compilation #2
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c trunk/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c trunk/reactos/boot/freeldr/freeldr/reactos/archwsup.c
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/i... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c [iso-8859-1] Sun Aug 9 10:24:22 2009 @@ -222,7 +222,7 @@ 0x0, 0x0, 0xFFFFFFFF, - "PCI BIOS" + "PCI BIOS", &BiosKey);
/* Increment bus number */
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/i... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c [iso-8859-1] Sun Aug 9 10:24:22 2009 @@ -102,7 +102,6 @@ ULONG i; ULONG Checksum; ULONG Signature; - CHAR Identifier[20]; CHAR ArcName[256];
/* Read the MBR */
Modified: trunk/reactos/boot/freeldr/freeldr/reactos/archwsup.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/reacto... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/reactos/archwsup.c [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/reactos/archwsup.c [iso-8859-1] Sun Aug 9 10:24:22 2009 @@ -160,11 +160,11 @@ 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;