Merge branch 'rb/hashmap-h-compilation-fix' into maint

Code clean-up.

* rb/hashmap-h-compilation-fix:
  hashmap.h: remove unused variable
This commit is contained in:
Junio C Hamano 2018-03-22 14:24:15 -07:00
Родитель 9bcb48912c 7d68bb0766
Коммит b502aa4f45
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -400,7 +400,6 @@ static inline void hashmap_disable_item_counting(struct hashmap *map)
*/
static inline void hashmap_enable_item_counting(struct hashmap *map)
{
void *item;
unsigned int n = 0;
struct hashmap_iter iter;
@ -408,7 +407,7 @@ static inline void hashmap_enable_item_counting(struct hashmap *map)
return;
hashmap_iter_init(map, &iter);
while ((item = hashmap_iter_next(&iter)))
while (hashmap_iter_next(&iter))
n++;
map->do_count_items = 1;