mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[NTFS]
In NtfsFindFileAt() directly print first entry value instead of its address svn path=/trunk/; revision=68269
This commit is contained in:
parent
de1f1fca9f
commit
7420a2aff7
1 changed files with 1 additions and 1 deletions
|
@ -801,7 +801,7 @@ NtfsFindFileAt(PDEVICE_EXTENSION Vcb,
|
|||
{
|
||||
NTSTATUS Status;
|
||||
|
||||
DPRINT("NtfsFindFileAt(%p, %wZ, %p, %p, %p, %I64x)\n", Vcb, SearchPattern, FirstEntry, FileRecord, MFTIndex, CurrentMFTIndex);
|
||||
DPRINT("NtfsFindFileAt(%p, %wZ, %u, %p, %p, %I64x)\n", Vcb, SearchPattern, *FirstEntry, FileRecord, MFTIndex, CurrentMFTIndex);
|
||||
|
||||
Status = NtfsFindMftRecord(Vcb, CurrentMFTIndex, SearchPattern, FirstEntry, TRUE, &CurrentMFTIndex);
|
||||
if (!NT_SUCCESS(Status))
|
||||
|
|
Loading…
Reference in a new issue