Changes by: szaka
Update of /cvsroot/linux-ntfs/ntfsprogs/include/ntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13674/include/ntfs
Modified Files:
layout.h
Log Message:
Fix type of reserved_II in SDH_INDEX_DATA; resolve some magic constants
Index: layout.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/include/ntfs/layout.h,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -p -r1.37 -r1.38
--- layout.h 31 Oct 2005 01:15:12 -0000 1.37
+++ layout.h 1 Nov 2005 19:56:08 -0000 1.38
@@ -1882,7 +1882,7 @@ typedef struct {
u32 security_id; /* The security_id assigned to the descriptor. */
u64 offset_in_sds; /* Offset of the descriptor in SDS data stream */
u32 size_in_sds; /* Size of the descriptor in SDS data stream */
- u64 reserved_II; /* Padding - always unicode "II" */
+ u32 reserved_II; /* Padding - always unicode "II" */
} __attribute__((__packed__)) SDH_INDEX_DATA;
/**
|