diff options
| author | Patrick Steinhardt <ps@pks.im> | 2025-10-09 10:01:40 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-10-16 14:42:40 -0700 |
| commit | ecad863c127cd167647e5929d94627c799587134 (patch) | |
| tree | 78f567a8541472c294abfdcb293a7209c0f5d293 /packfile.c | |
| parent | 86d8c62f48a1b193299de19c4dbc664650a853f1 (diff) | |
| download | git-ecad863c127cd167647e5929d94627c799587134.tar.xz | |
packfile: rename `packfile_store_get_all_packs()`
In a preceding commit we have removed `packfile_store_get_packs()`. With
this function removed it's somewhat useless to still have the "all"
infix in `packfile_store_get_all_packs()`. Rename the latter to drop
that infix.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'packfile.c')
| -rw-r--r-- | packfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packfile.c b/packfile.c index ab5859518d..1ae2b2fe1e 100644 --- a/packfile.c +++ b/packfile.c @@ -1027,7 +1027,7 @@ void packfile_store_reprepare(struct packfile_store *store) packfile_store_prepare(store); } -struct packed_git *packfile_store_get_all_packs(struct packfile_store *store) +struct packed_git *packfile_store_get_packs(struct packfile_store *store) { packfile_store_prepare(store); |
