diff options
| author | Junio C Hamano <gitster@pobox.com> | 2021-08-11 12:36:17 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-08-11 12:36:17 -0700 |
| commit | 7cfaa86fe6f61698752d13c59ac97a102d1fbaae (patch) | |
| tree | ce8fbddbbabcf6da2dc90e7259b46978302ad0ef /oidtree.c | |
| parent | 2d755dfac9aadab25c3e025b849252b8c0a61465 (diff) | |
| parent | 581a3bb155c157094ca486e3a10c4a9b70c8f650 (diff) | |
| download | git-7cfaa86fe6f61698752d13c59ac97a102d1fbaae.tar.xz | |
Merge branch 'cb/many-alternate-optim-fixup'
Build fix.
* cb/many-alternate-optim-fixup:
object-file: use unsigned arithmetic with bit mask
object-store: avoid extra ';' from KHASH_INIT
oidtree: avoid nested struct oidtree_node
Diffstat (limited to 'oidtree.c')
| -rw-r--r-- | oidtree.c | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -6,11 +6,6 @@ #include "alloc.h" #include "hash.h" -struct oidtree_node { - /* n.k[] is used to store "struct object_id" */ - struct cb_node n; -}; - struct oidtree_iter_data { oidtree_iter fn; void *arg; @@ -35,13 +30,13 @@ void oidtree_clear(struct oidtree *ot) void oidtree_insert(struct oidtree *ot, const struct object_id *oid) { - struct oidtree_node *on; + struct cb_node *on; if (!oid->algo) BUG("oidtree_insert requires oid->algo"); on = mem_pool_alloc(&ot->mem_pool, sizeof(*on) + sizeof(*oid)); - oidcpy_with_padding((struct object_id *)on->n.k, oid); + oidcpy_with_padding((struct object_id *)on->k, oid); /* * n.b. Current callers won't get us duplicates, here. If a @@ -49,7 +44,7 @@ void oidtree_insert(struct oidtree *ot, const struct object_id *oid) * that won't be freed until oidtree_clear. Currently it's not * worth maintaining a free list */ - cb_insert(&ot->tree, &on->n, sizeof(*oid)); + cb_insert(&ot->tree, on, sizeof(*oid)); } |
