diff options
author | Derrick Stolee <dstolee@microsoft.com> | 2020-05-01 15:30:18 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-05-01 11:41:21 -0700 |
commit | eb591e42fd48dda59c309beba6991e95d552034f (patch) | |
tree | 099cdbd7683ffc714971b32af5e04ed840722b70 /bloom.h | |
parent | 1b4c57fa87e121f155863f898dc39d06cf4a1d99 (diff) | |
download | git-eb591e42fd48dda59c309beba6991e95d552034f.tar.gz |
bloom: fix whitespace around tab length
Fix alignment issues that were likely introduced due to an editor
using tab lengths of 4 instead of 8.
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bloom.h')
-rw-r--r-- | bloom.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -74,8 +74,8 @@ void fill_bloom_key(const char *data, const struct bloom_filter_settings *settings); void add_key_to_filter(const struct bloom_key *key, - struct bloom_filter *filter, - const struct bloom_filter_settings *settings); + struct bloom_filter *filter, + const struct bloom_filter_settings *settings); void init_bloom_filters(void); |