mirror of
https://github.com/reactos/reactos.git
synced 2025-05-16 15:50:24 +00:00
[NTFS]
Fix a typo. Patch by Trevor Thompson CORE-10998 svn path=/trunk/; revision=71055
This commit is contained in:
parent
49cf2b67df
commit
7dd5bed1c6
2 changed files with 3 additions and 3 deletions
|
@ -76,7 +76,7 @@ NtfsAllocateIrpContext(PDEVICE_OBJECT DeviceObject,
|
|||
|
||||
RtlZeroMemory(IrpContext, sizeof(NTFS_IRP_CONTEXT));
|
||||
|
||||
IrpContext->Identifier.Type = NTFS_TYPE_IRP_CONTEST;
|
||||
IrpContext->Identifier.Type = NTFS_TYPE_IRP_CONTEXT;
|
||||
IrpContext->Identifier.Size = sizeof(NTFS_IRP_CONTEXT);
|
||||
IrpContext->Irp = Irp;
|
||||
IrpContext->DeviceObject = DeviceObject;
|
||||
|
|
|
@ -86,8 +86,8 @@ typedef struct _NTFS_INFO
|
|||
|
||||
#define NTFS_TYPE_CCB '20SF'
|
||||
#define NTFS_TYPE_FCB '30SF'
|
||||
#define NTFS_TYPE_VCB '50SF'
|
||||
#define NTFS_TYPE_IRP_CONTEST '60SF'
|
||||
#define NTFS_TYPE_VCB '50SF'
|
||||
#define NTFS_TYPE_IRP_CONTEXT '60SF'
|
||||
#define NTFS_TYPE_GLOBAL_DATA '70SF'
|
||||
|
||||
typedef struct
|
||||
|
|
Loading…
Reference in a new issue