Changes by: uvman
Update of /cvsroot/linux-ntfs/ntfsprogs/include/ntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15455/include/ntfs
Modified Files:
types.h
Log Message:
Add a comment to some typedefs per discussion on linux-ntfs-dev
Index: types.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/include/ntfs/types.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -p -r1.10 -r1.11
--- types.h 5 Jul 2005 16:34:15 -0000 1.10
+++ types.h 20 Oct 2005 00:56:11 -0000 1.11
@@ -45,6 +45,11 @@ typedef int64_t s64;
typedef u16 le16;
typedef u32 le32;
typedef u64 le64;
+
+/*
+ * Declare sle{16,32,64} to be unsigned because we do not want sign extension
+ * on BE architectures.
+ */
typedef u16 sle16;
typedef u32 sle32;
typedef u64 sle64;
|