summaryrefslogtreecommitdiff
path: root/bloom.c
diff options
context:
space:
mode:
authorĐoàn Trần Công Danh <congdanhqx@gmail.com>2020-05-07 23:51:02 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-05-08 00:08:21 (GMT)
commit066b70ae977b6481b15ebccb7c5deedf23c944ed (patch)
tree1c1fd3f5aa1afe3ad94b5ecd22b8f2064d57833d /bloom.c
parent07d8ea56f2ecb64b75b92264770c0a664231ce17 (diff)
downloadgit-066b70ae977b6481b15ebccb7c5deedf23c944ed.zip
git-066b70ae977b6481b15ebccb7c5deedf23c944ed.tar.gz
git-066b70ae977b6481b15ebccb7c5deedf23c944ed.tar.bz2
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 'bloom.c')
-rw-r--r--bloom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bloom.c b/bloom.c
index dd9bab9..ee025e0 100644
--- a/bloom.c
+++ b/bloom.c
@@ -9,7 +9,7 @@
define_commit_slab(bloom_filter_slab, struct bloom_filter);
-struct bloom_filter_slab bloom_filters;
+static struct bloom_filter_slab bloom_filters;
struct pathmap_hash_entry {
struct hashmap_entry entry;
@@ -273,4 +273,4 @@ int bloom_filter_contains(const struct bloom_filter *filter,
}
return 1;
-} \ No newline at end of file
+}