[NTFS]
authorTrevor Thompson <tmt256@email.vccs.edu>
Wed, 29 Jun 2016 17:49:36 +0000 (17:49 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Sun, 10 Dec 2017 10:13:35 +0000 (11:13 +0100)
Fix typo in NtfsAllocateClusters(), spotted by ThFabba.

svn path=/branches/GSoC_2016/NTFS/; revision=71697

drivers/filesystems/ntfs/volinfo.c

index c893562..df3af49 100644 (file)
@@ -119,7 +119,7 @@ NtfsAllocateClusters(PDEVICE_EXTENSION DeviceExt,
     ULONG Read = 0;
     RTL_BITMAP Bitmap;
 
-    DPRINT1("NtfsAllocateClusters(%p, %lu, %lu, %p)\n", DeviceExt, DesiredClusters, FirstDesiredCluster, FirstAssignedCluster, AssignedClusters);
+    DPRINT1("NtfsAllocateClusters(%p, %lu, %lu, %p, %p)\n", DeviceExt, FirstDesiredCluster, DesiredClusters, FirstAssignedCluster, AssignedClusters);
 
     BitmapRecord = ExAllocatePoolWithTag(NonPagedPool,
                                          DeviceExt->NtfsInfo.BytesPerFileRecord,