diff options
author | Đoàn Trần Công Danh <congdanhqx@gmail.com> | 2020-05-08 00:51:02 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-05-07 17:08:21 -0700 |
commit | 066b70ae977b6481b15ebccb7c5deedf23c944ed (patch) | |
tree | 1c1fd3f5aa1afe3ad94b5ecd22b8f2064d57833d /t/helper | |
parent | The seventh batch (diff) | |
download | tgif-066b70ae977b6481b15ebccb7c5deedf23c944ed.tar.xz |
bloom: fix `make sparse` warning
* We need a `final_new_line` to make our source code as text file, per
POSIX and C specification.
* `bloom_filters` should be limited to interal linkage only
Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com>
Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/helper')
-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; |