diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 79161a54a..154116e90 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -277,7 +277,7 @@ ** to fit in 32-bits. This macro is used inside of various testcase() ** macros to verify that we have tested SQLite for large-file support. */ -#define IS_BIG_INT(X) (((X)&(i64)0xffffffff)!=0) +#define IS_BIG_INT(X) (((X)&~(i64)0xffffffff)!=0) /* ** The macro unlikely() is a hint that surrounds a boolean |