Changes by: yura
Update of /cvs/linux-ntfs/ntfsprogs/include/ntfs
In directory delta357:/tmp/cvs-serv10644/include/ntfs
Modified Files:
types.h
Log Message:
Workaround for this bogus s64 warnings. Thanks, Linus!
Index: types.h
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/include/ntfs/types.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -p -r1.18 -r1.19
--- types.h 12 Dec 2006 15:02:25 -0000 1.18
+++ types.h 12 Dec 2006 20:27:32 -0000 1.19
@@ -35,6 +35,10 @@
#include <sys/types.h>
#endif
+#ifdef __CHECKER__
+typedef int __attribute__((__mode__(__DI__))) int64_t;
+#endif
+
typedef uint8_t u8; /* Unsigned types of an exact size */
typedef uint16_t u16;
typedef uint32_t u32;
|