diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-03-22 14:24:15 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-22 14:24:15 -0700 |
commit | b502aa4f45c9198ee498a09873f2c877911f23d7 (patch) | |
tree | 517de2d0b9bb81b546b1039ea70d44589691d9d9 | |
parent | Merge branch 'rs/describe-unique-abbrev' into maint (diff) | |
parent | hashmap.h: remove unused variable (diff) | |
download | tgif-b502aa4f45c9198ee498a09873f2c877911f23d7.tar.xz |
Merge branch 'rb/hashmap-h-compilation-fix' into maint
Code clean-up.
* rb/hashmap-h-compilation-fix:
hashmap.h: remove unused variable
-rw-r--r-- | hashmap.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; |