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>
This commit is contained in:
parent
07d8ea56f2
commit
066b70ae97
2
bloom.c
2
bloom.c
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
define_commit_slab(bloom_filter_slab, struct bloom_filter);
|
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 pathmap_hash_entry {
|
||||||
struct hashmap_entry entry;
|
struct hashmap_entry entry;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include "test-tool.h"
|
#include "test-tool.h"
|
||||||
#include "commit.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) {
|
static void add_string_to_filter(const char *data, struct bloom_filter *filter) {
|
||||||
struct bloom_key key;
|
struct bloom_key key;
|
||||||
|
Loading…
Reference in New Issue
Block a user