[DISKPART] Fix magic values in CreateLogicalPartition() and CreatePrimaryPartition()

This commit is contained in:
Eric Kohl 2022-07-03 14:09:35 +02:00
parent b671b1cf8f
commit 57c84dd658

View file

@ -204,7 +204,7 @@ CreateLogicalPartition(
ULONGLONG ullOffset = 0ULL;
BOOL bNoErr = FALSE;
#endif
UCHAR PartitionType = 6;
UCHAR PartitionType = PARTITION_HUGE;
INT i, length;
PWSTR pszSuffix = NULL;
NTSTATUS Status;
@ -404,7 +404,7 @@ CreatePrimaryPartition(
ULONGLONG ullOffset = 0ULL;
BOOL bNoErr = FALSE;
#endif
UCHAR PartitionType = 6;
UCHAR PartitionType = PARTITION_HUGE;
INT i, length;
PWSTR pszSuffix = NULL;
NTSTATUS Status;