]> git.ipfire.org Git - thirdparty/git.git/commit
bloom: rename function operates on bloom_key
authorLidong Yan <yldhome2d2@gmail.com>
Sat, 12 Jul 2025 09:35:14 +0000 (17:35 +0800)
committerJunio C Hamano <gitster@pobox.com>
Mon, 14 Jul 2025 17:03:02 +0000 (10:03 -0700)
commitb187353ed2b92745a903d321eaafac342a5df8d4
tree90ccddbde49af9c67eb1c2c9e0d79cac92ffcfe4
parent4ca70179020b6a33bb5334302e7c79faf7eeaf52
bloom: rename function operates on bloom_key

git code style requires that functions operating on a struct S
should be named in the form S_verb. However, the functions operating
on struct bloom_key do not follow this convention. Therefore,
fill_bloom_key() and clear_bloom_key() are renamed to bloom_key_fill()
and bloom_key_clear(), respectively.

Signed-off-by: Lidong Yan <502024330056@smail.nju.edu.cn>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
blame.c
bloom.c
bloom.h
line-log.c
revision.c
t/helper/test-bloom.c