Merge branch 'ak/use-hashmap-iter-first-in-submodule-config'
Minor code cleanup. * ak/use-hashmap-iter-first-in-submodule-config: submodule-config: use hashmap_iter_first()maint
commit
73385f20e1
|
@ -405,8 +405,7 @@ static const struct submodule *config_from(struct submodule_cache *cache,
|
||||||
struct hashmap_iter iter;
|
struct hashmap_iter iter;
|
||||||
struct submodule_entry *entry;
|
struct submodule_entry *entry;
|
||||||
|
|
||||||
hashmap_iter_init(&cache->for_name, &iter);
|
entry = hashmap_iter_first(&cache->for_name, &iter);
|
||||||
entry = hashmap_iter_next(&iter);
|
|
||||||
if (!entry)
|
if (!entry)
|
||||||
return NULL;
|
return NULL;
|
||||||
return entry->config;
|
return entry->config;
|
||||||
|
|
Loading…
Reference in New Issue