diff options
author | Patrick Steinhardt <ps@pks.im> | 2025-07-01 14:22:15 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2025-07-01 14:46:34 -0700 |
commit | 8f49151763cb81adf4bcec53c1ae67057081b02d (patch) | |
tree | d077aaae6b58db1ac83909474254c1bb7f5c84a2 /merge-blobs.c | |
parent | a1e2581a1e9ca2a85ae0a018ba5fb8fe5db3c322 (diff) |
object-store: rename files to "odb.{c,h}"
In the preceding commits we have renamed the structures contained in
"object-store.h" to `struct object_database` and `struct odb_backend`.
As such, the code files "object-store.{c,h}" are confusingly named now.
Rename them to "odb.{c,h}" accordingly.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'merge-blobs.c')
-rw-r--r-- | merge-blobs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/merge-blobs.c b/merge-blobs.c index 53f36dbc17..ba8a3fdfd8 100644 --- a/merge-blobs.c +++ b/merge-blobs.c @@ -4,7 +4,7 @@ #include "merge-ll.h" #include "blob.h" #include "merge-blobs.h" -#include "object-store.h" +#include "odb.h" static int fill_mmfile_blob(mmfile_t *f, struct blob *obj) { |