From b7ca7786e4061af3bc2608c1d33b30d0506fea48 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Wed, 18 Aug 2004 02:20:00 +0000 Subject: [PATCH] Print in the debug traces if a partition is recognized or not. svn path=/trunk/; revision=10583 --- reactos/ntoskrnl/io/xhaldrv.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/reactos/ntoskrnl/io/xhaldrv.c b/reactos/ntoskrnl/io/xhaldrv.c index 608ec146650..9fa6de6f055 100644 --- a/reactos/ntoskrnl/io/xhaldrv.c +++ b/reactos/ntoskrnl/io/xhaldrv.c @@ -1,4 +1,4 @@ -/* $Id: xhaldrv.c,v 1.46 2004/08/15 16:39:03 chorns Exp $ +/* $Id: xhaldrv.c,v 1.47 2004/08/18 02:20:00 navaraf Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -916,13 +916,14 @@ xHalIoReadPartitionTable(PDEVICE_OBJECT DeviceObject, IsRecognizedPartition (PartitionSector->Partition[i].PartitionType); LayoutBuffer->PartitionEntry[Count].RewritePartition = FALSE; - DPRINT(" %ld: nr: %d boot: %1x type: %x start: 0x%I64x count: 0x%I64x\n", + DPRINT(" %ld: nr: %d boot: %1x type: %x start: 0x%I64x count: 0x%I64x rec: %d\n", Count, LayoutBuffer->PartitionEntry[Count].PartitionNumber, LayoutBuffer->PartitionEntry[Count].BootIndicator, LayoutBuffer->PartitionEntry[Count].PartitionType, LayoutBuffer->PartitionEntry[Count].StartingOffset.QuadPart, - LayoutBuffer->PartitionEntry[Count].PartitionLength.QuadPart); + LayoutBuffer->PartitionEntry[Count].PartitionLength.QuadPart, + LayoutBuffer->PartitionEntry[Count].RecognizedPartition); LayoutBuffer->PartitionCount++; }