diff options
author | Đoàn Trần Công Danh <congdanhqx@gmail.com> | 2020-05-08 01:51:02 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-05-08 02:08:21 +0200 |
commit | 066b70ae977b6481b15ebccb7c5deedf23c944ed (patch) | |
tree | 1c1fd3f5aa1afe3ad94b5ecd22b8f2064d57833d /bloom.h | |
parent | The seventh batch (diff) | |
download | git-066b70ae977b6481b15ebccb7c5deedf23c944ed.tar.xz git-066b70ae977b6481b15ebccb7c5deedf23c944ed.zip |
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.h')
-rw-r--r-- | bloom.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -87,4 +87,4 @@ int bloom_filter_contains(const struct bloom_filter *filter, const struct bloom_key *key, const struct bloom_filter_settings *settings); -#endif
\ No newline at end of file +#endif |