diff options
author | drh <drh@noemail.net> | 2015-11-21 17:27:42 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-11-21 17:27:42 +0000 |
commit | 62aaa6ca885067b241c88cf24a6c40c26df2a9ca (patch) | |
tree | 03e995b732f74b1e17376081cf08c22edaaf4c97 /src/bitvec.c | |
parent | 202923107d97496744deb553836558e00d7fd108 (diff) | |
download | sqlite-62aaa6ca885067b241c88cf24a6c40c26df2a9ca.tar.gz sqlite-62aaa6ca885067b241c88cf24a6c40c26df2a9ca.zip |
Fix over-length source code lines. No logic changes.
FossilOrigin-Name: 198d191b2f5ef7d63ac0093c701955c9052fd734
Diffstat (limited to 'src/bitvec.c')
-rw-r--r-- | src/bitvec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bitvec.c b/src/bitvec.c index fd908f791..f7f544cff 100644 --- a/src/bitvec.c +++ b/src/bitvec.c @@ -41,7 +41,8 @@ /* Round the union size down to the nearest pointer boundary, since that's how ** it will be aligned within the Bitvec struct. */ -#define BITVEC_USIZE (((BITVEC_SZ-(3*sizeof(u32)))/sizeof(Bitvec*))*sizeof(Bitvec*)) +#define BITVEC_USIZE \ + (((BITVEC_SZ-(3*sizeof(u32)))/sizeof(Bitvec*))*sizeof(Bitvec*)) /* Type of the array "element" for the bitmap representation. ** Should be a power of 2, and ideally, evenly divide into BITVEC_USIZE. |