https://git.reactos.org/?p=reactos.git;a=commitdiff;h=6ab3072098ec3a28292471ac6ec6a7310dff04a5

commit 6ab3072098ec3a28292471ac6ec6a7310dff04a5
Author: Trevor Thompson <[email protected]>
AuthorDate: Mon Aug 22 08:27:35 2016 +0000

    [NTFS]
    *UpdateFileRecord() - Fix a DPRINT
    
    svn path=/branches/GSoC_2016/NTFS/; revision=72423
---
 drivers/filesystems/ntfs/mft.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/filesystems/ntfs/mft.c b/drivers/filesystems/ntfs/mft.c
index f3ac3182dc..4b0ded49f3 100644
--- a/drivers/filesystems/ntfs/mft.c
+++ b/drivers/filesystems/ntfs/mft.c
@@ -1092,7 +1092,7 @@ UpdateFileRecord(PDEVICE_EXTENSION Vcb,
 
     if (!NT_SUCCESS(Status))
     {
-        DPRINT1("UpdateFileRecord failed: %I64u written, %lu expected\n", 
BytesWritten, Vcb->NtfsInfo.BytesPerFileRecord);
+        DPRINT1("UpdateFileRecord failed: %lu written, %lu expected\n", 
BytesWritten, Vcb->NtfsInfo.BytesPerFileRecord);
     }
 
     // remove the fixup array (so the file record pointer can still be used)

Reply via email to