From 914cf8f2be02c1756d53985b21d2ec956275f6b8 Mon Sep 17 00:00:00 2001 From: yura Date: Tue, 12 Dec 2006 20:27:32 +0000 Subject: [PATCH] Workaround for this bogus s64 warnings. Thanks, Linus! --- include/ntfs/types.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/ntfs/types.h b/include/ntfs/types.h index ea156b27..0e214128 100644 --- a/include/ntfs/types.h +++ b/include/ntfs/types.h @@ -35,6 +35,10 @@ #include #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;