diff options
author | dan <dan@noemail.net> | 2010-07-14 06:20:26 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2010-07-14 06:20:26 +0000 |
commit | b31a6afad06c6b5c0a2d2afb5944866f3ffcf7fa (patch) | |
tree | 932972d8631fcb6b27cbc31f52c37496a77183f6 /src | |
parent | 5d4feffe7d96893d6eb339818101615748618673 (diff) | |
download | sqlite-b31a6afad06c6b5c0a2d2afb5944866f3ffcf7fa.tar.gz sqlite-b31a6afad06c6b5c0a2d2afb5944866f3ffcf7fa.zip |
Fix a typo in the IS_BIG_INT macro used by coverage test instrumentation.
FossilOrigin-Name: 5314ca3928dab1c76fa4ec5dbe110e3212c95e9f
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 |