From 3287d9f0c13c59f5da5a872e36a1106112e47962 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Wed, 23 Sep 2009 19:07:49 +0000 Subject: [PATCH] [freeldr] Partition numbers are 1 based svn path=/trunk/; revision=43123 --- reactos/boot/freeldr/freeldr/arch/i386/hardware.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/boot/freeldr/freeldr/arch/i386/hardware.c b/reactos/boot/freeldr/freeldr/arch/i386/hardware.c index 864569e7da4..fe9a4c9c43c 100644 --- a/reactos/boot/freeldr/freeldr/arch/i386/hardware.c +++ b/reactos/boot/freeldr/freeldr/arch/i386/hardware.c @@ -563,7 +563,7 @@ GetHarddiskIdentifier(PCHAR Identifier, FsRegisterDevice(ArcName, &DiskVtbl); /* Add partitions */ - i = 0; + i = 1; DiskReportError(FALSE); while (MachDiskGetPartitionEntry(DriveNumber, i, &PartitionTableEntry)) {