mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[DISKPART] Fix magic values in CreateLogicalPartition() and CreatePrimaryPartition()
This commit is contained in:
parent
b671b1cf8f
commit
57c84dd658
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue