Changes by: aia21
Update of /cvs/linux-ntfs/ntfsprogs/include/ntfs
In directory delta357:/tmp/cvs-serv13724
Modified Files:
layout.h
Log Message:
fix a packing bug
Index: layout.h
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/include/ntfs/layout.h,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -p -r1.57 -r1.58
--- layout.h 10 Oct 2006 10:29:11 -0000 1.57
+++ layout.h 20 Oct 2006 19:54:22 -0000 1.58
@@ -1158,7 +1158,7 @@ typedef union {
u8 data4[8]; /* The first two bytes are the third group of
four hexadecimal digits. The remaining six
bytes are the final 12 hexadecimal digits. */
- };
+ } __attribute__((__packed__));
u8 raw[16]; /* Raw binary for ease of access. */
} __attribute__((__packed__)) GUID;
|