]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/helper/test-hashmap.c
hashmap_get_next takes "const struct hashmap_entry *"
[thirdparty/git.git] / t / helper / test-hashmap.c
index aaf17b0ddf9e8ddd1270f613f8c71841c6644eb9..bf063a2521c166ce3c691cf73b39852309465bfa 100644 (file)
@@ -37,7 +37,7 @@ static struct test_entry *alloc_test_entry(unsigned int hash,
        size_t klen = strlen(key);
        size_t vlen = strlen(value);
        struct test_entry *entry = xmalloc(st_add4(sizeof(*entry), klen, vlen, 2));
-       hashmap_entry_init(entry, hash);
+       hashmap_entry_init(&entry->ent, hash);
        memcpy(entry->key, key, klen + 1);
        memcpy(entry->key + klen + 1, value, vlen + 1);
        return entry;
@@ -103,7 +103,7 @@ static void perf_hashmap(unsigned int method, unsigned int rounds)
 
                        /* add entries */
                        for (i = 0; i < TEST_SIZE; i++) {
-                               hashmap_entry_init(entries[i], hashes[i]);
+                               hashmap_entry_init(&entries[i]->ent, hashes[i]);
                                hashmap_add(&map, entries[i]);
                        }
 
@@ -116,7 +116,7 @@ static void perf_hashmap(unsigned int method, unsigned int rounds)
                /* fill the map (sparsely if specified) */
                j = (method & TEST_SPARSE) ? TEST_SIZE / 10 : TEST_SIZE;
                for (i = 0; i < j; i++) {
-                       hashmap_entry_init(entries[i], hashes[i]);
+                       hashmap_entry_init(&entries[i]->ent, hashes[i]);
                        hashmap_add(&map, entries[i]);
                }
 
@@ -203,7 +203,7 @@ int cmd__hashmap(int argc, const char **argv)
                                puts("NULL");
                        while (entry) {
                                puts(get_value(entry));
-                               entry = hashmap_get_next(&map, entry);
+                               entry = hashmap_get_next(&map, &entry->ent);
                        }
 
                } else if (!strcmp("remove", cmd) && p1) {