From d27f9ac52cd51d84df24074fa3d2f3fe57bb987c Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Wed, 16 Mar 2022 10:59:49 +0000 Subject: Bloom: Style: Align function parameters. --- src/select/bloom.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/select/bloom.h b/src/select/bloom.h index d6597f1..90328cc 100644 --- a/src/select/bloom.h +++ b/src/select/bloom.h @@ -95,7 +95,8 @@ static inline bool css_bloom_has_hash(const css_bloom bloom[CSS_BLOOM_SIZE], * \param b superset bloom * \return true iff 'a' is subset of 'b' */ -static inline bool css_bloom_in_bloom(const css_bloom a[CSS_BLOOM_SIZE], +static inline bool css_bloom_in_bloom( + const css_bloom a[CSS_BLOOM_SIZE], const css_bloom b[CSS_BLOOM_SIZE]) { if ((a[0] & b[0]) != a[0]) @@ -146,7 +147,7 @@ static inline bool css_bloom_in_bloom(const css_bloom a[CSS_BLOOM_SIZE], */ static inline void css_bloom_merge( const css_bloom a[restrict CSS_BLOOM_SIZE], - css_bloom b[restrict CSS_BLOOM_SIZE]) + css_bloom b[restrict CSS_BLOOM_SIZE]) { b[0] |= a[0]; b[1] |= a[1]; -- cgit v1.2.1