From 0bf0de6cc70361b7847264050d03b91f6d423813 Mon Sep 17 00:00:00 2001 From: Taylor Blau Date: Sat, 4 Dec 2021 17:51:38 -0500 Subject: packfile: make `close_pack_revindex()` static Since its definition in 2f4ba2a867 (packfile: prepare for the existence of '*.rev' files, 2021-01-25), the only caller of `close_pack_revindex()` was within packfile.c. Thus there is no need for this to be exposed via packfile.h, and instead can remain static within packfile.c's compilation unit. While we're here, move the function's opening brace onto its own line. Noticed-by: Ramsay Jones Signed-off-by: Taylor Blau Signed-off-by: Junio C Hamano --- packfile.h | 1 - 1 file changed, 1 deletion(-) (limited to 'packfile.h') diff --git a/packfile.h b/packfile.h index 4cfec9e8d3..a58fc738e0 100644 --- a/packfile.h +++ b/packfile.h @@ -90,7 +90,6 @@ uint32_t get_pack_fanout(struct packed_git *p, uint32_t value); unsigned char *use_pack(struct packed_git *, struct pack_window **, off_t, unsigned long *); void close_pack_windows(struct packed_git *); -void close_pack_revindex(struct packed_git *); void close_pack(struct packed_git *); void close_object_store(struct raw_object_store *o); void unuse_pack(struct pack_window **); -- cgit v1.2.1