Author: hbelusca
Date: Wed Jan 13 14:12:04 2016
New Revision: 70583
URL:
http://svn.reactos.org/svn/reactos?rev=70583&view=rev
Log:
[VFATLIB]: Comments (and DPRINT) fixes only.
Modified:
trunk/reactos/lib/fslib/vfatlib/common.c
trunk/reactos/lib/fslib/vfatlib/fat12.c
trunk/reactos/lib/fslib/vfatlib/fat16.c
trunk/reactos/lib/fslib/vfatlib/fat32.c
Modified: trunk/reactos/lib/fslib/vfatlib/common.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fslib/vfatlib/common.c…
==============================================================================
--- trunk/reactos/lib/fslib/vfatlib/common.c [iso-8859-1] (original)
+++ trunk/reactos/lib/fslib/vfatlib/common.c [iso-8859-1] Wed Jan 13 14:12:04 2016
@@ -50,7 +50,7 @@
return Serial;
}
-/***** Wipe function for FAT12, FAT16 and FAT32 formats, adapted from FAT32 code *****/
+/***** Wipe function for FAT12, FAT16 and FAT32 formats *****/
NTSTATUS
FatWipeSectors(
IN HANDLE FileHandle,
Modified: trunk/reactos/lib/fslib/vfatlib/fat12.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fslib/vfatlib/fat12.c?…
==============================================================================
--- trunk/reactos/lib/fslib/vfatlib/fat12.c [iso-8859-1] (original)
+++ trunk/reactos/lib/fslib/vfatlib/fat12.c [iso-8859-1] Wed Jan 13 14:12:04 2016
@@ -333,7 +333,7 @@
Context);
if (!NT_SUCCESS(Status))
{
- DPRINT("Fat12WipeSectors() failed with status 0x%.08x\n", Status);
+ DPRINT("FatWipeSectors() failed with status 0x%.08x\n", Status);
return Status;
}
}
Modified: trunk/reactos/lib/fslib/vfatlib/fat16.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fslib/vfatlib/fat16.c?…
==============================================================================
--- trunk/reactos/lib/fslib/vfatlib/fat16.c [iso-8859-1] (original)
+++ trunk/reactos/lib/fslib/vfatlib/fat16.c [iso-8859-1] Wed Jan 13 14:12:04 2016
@@ -341,7 +341,7 @@
Context);
if (!NT_SUCCESS(Status))
{
- DPRINT("Fat16WipeSectors() failed with status 0x%.08x\n", Status);
+ DPRINT("FatWipeSectors() failed with status 0x%.08x\n", Status);
return Status;
}
}
Modified: trunk/reactos/lib/fslib/vfatlib/fat32.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fslib/vfatlib/fat32.c?…
==============================================================================
--- trunk/reactos/lib/fslib/vfatlib/fat32.c [iso-8859-1] (original)
+++ trunk/reactos/lib/fslib/vfatlib/fat32.c [iso-8859-1] Wed Jan 13 14:12:04 2016
@@ -484,7 +484,7 @@
Context);
if (!NT_SUCCESS(Status))
{
- DPRINT("Fat32WipeSectors() failed with status 0x%.08x\n", Status);
+ DPRINT("FatWipeSectors() failed with status 0x%.08x\n", Status);
return Status;
}
}