diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-05-13 12:19:20 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-05-13 12:19:20 -0700 |
commit | 2e72299ec66c1963836f544fe8485853807b8f28 (patch) | |
tree | 45f26c5adfc79f7068f90a23e24a938aaeb3f15d /t/helper/test-bloom.c | |
parent | Merge branch 'jk/ci-only-on-selected-branches' (diff) | |
parent | bloom: fix `make sparse` warning (diff) | |
download | tgif-2e72299ec66c1963836f544fe8485853807b8f28.tar.xz |
Merge branch 'dd/bloom-sparse-fix'
Code clean-up.
* dd/bloom-sparse-fix:
bloom: fix `make sparse` warning
Diffstat (limited to 't/helper/test-bloom.c')
-rw-r--r-- | t/helper/test-bloom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/helper/test-bloom.c b/t/helper/test-bloom.c index 77eb27adac..456f5ea7f9 100644 --- a/t/helper/test-bloom.c +++ b/t/helper/test-bloom.c @@ -3,7 +3,7 @@ #include "test-tool.h" #include "commit.h" -struct bloom_filter_settings settings = DEFAULT_BLOOM_FILTER_SETTINGS; +static struct bloom_filter_settings settings = DEFAULT_BLOOM_FILTER_SETTINGS; static void add_string_to_filter(const char *data, struct bloom_filter *filter) { struct bloom_key key; |