diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-05-19 16:02:47 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-05-19 16:02:47 -0700 |
| commit | a9dcacbf2a74537916f61dd8c5f2dd2c1b4eb58a (patch) | |
| tree | 1e9684531b97a24571f1f977137fe42b5bab69f7 /t/unit-tests/u-oidmap.c | |
| parent | 9af978fa041d69d4281315630e659550a1d8104e (diff) | |
| parent | 4b63963f5d729cb9eb997c8912b7d500ffc53297 (diff) | |
Merge branch 'jk/oidmap-cleanup'
Code cleanup.
* jk/oidmap-cleanup:
raw_object_store: drop extra pointer to replace_map
oidmap: add size function
oidmap: rename oidmap_free() to oidmap_clear()
Diffstat (limited to 't/unit-tests/u-oidmap.c')
| -rw-r--r-- | t/unit-tests/u-oidmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/unit-tests/u-oidmap.c b/t/unit-tests/u-oidmap.c index dc805b7e3c..b23af449f6 100644 --- a/t/unit-tests/u-oidmap.c +++ b/t/unit-tests/u-oidmap.c @@ -35,7 +35,7 @@ void test_oidmap__initialize(void) void test_oidmap__cleanup(void) { - oidmap_free(&map, 1); + oidmap_clear(&map, 1); } void test_oidmap__replace(void) |
