Author: spetreolle Date: Sat Nov 21 23:29:03 2009 New Revision: 44265
URL: http://svn.reactos.org/svn/reactos?rev=44265&view=rev Log: Ext3fsd : fix zillions of signedness warnings (PUCHAR => PCHAR)
Modified: branches/arty-newcc/drivers/filesystems/Ext3Fsd/debug.c branches/arty-newcc/drivers/filesystems/Ext3Fsd/include/ext2fs.h
Modified: branches/arty-newcc/drivers/filesystems/Ext3Fsd/debug.c URL: http://svn.reactos.org/svn/reactos/branches/arty-newcc/drivers/filesystems/E... ============================================================================== --- branches/arty-newcc/drivers/filesystems/Ext3Fsd/debug.c [iso-8859-1] (original) +++ branches/arty-newcc/drivers/filesystems/Ext3Fsd/debug.c [iso-8859-1] Sat Nov 21 23:29:03 2009 @@ -36,7 +36,7 @@
/* Static Definitions ****************************************************/
-static PUCHAR IrpMjStrings[] = { +static PCHAR IrpMjStrings[] = { "IRP_MJ_CREATE", "IRP_MJ_CREATE_NAMED_PIPE", "IRP_MJ_CLOSE", @@ -67,7 +67,7 @@ "IRP_MJ_PNP" };
-static PUCHAR FileInformationClassStrings[] = { +static PCHAR FileInformationClassStrings[] = { "Unknown FileInformationClass 0", "FileDirectoryInformation", "FileFullDirectoryInformation", @@ -107,7 +107,7 @@ "FileTrackingInformation" };
-static PUCHAR FsInformationClassStrings[] = { +static PCHAR FsInformationClassStrings[] = { "Unknown FsInformationClass 0", "FileFsVolumeInformation", "FileFsLabelInformation", @@ -742,7 +742,7 @@ } }
-PUCHAR +PCHAR Ext2NtStatusToString ( IN NTSTATUS Status ) { switch (Status) {
Modified: branches/arty-newcc/drivers/filesystems/Ext3Fsd/include/ext2fs.h URL: http://svn.reactos.org/svn/reactos/branches/arty-newcc/drivers/filesystems/E... ============================================================================== --- branches/arty-newcc/drivers/filesystems/Ext3Fsd/include/ext2fs.h [iso-8859-1] (original) +++ branches/arty-newcc/drivers/filesystems/Ext3Fsd/include/ext2fs.h [iso-8859-1] Sat Nov 21 23:29:03 2009 @@ -1361,7 +1361,7 @@ IN BOOLEAN bPrint );
-PUCHAR +PCHAR Ext2NtStatusToString (IN NTSTATUS Status );
//