summaryrefslogtreecommitdiff
path: root/hashmap.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-02-13 21:39:10 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-02-13 21:39:10 (GMT)
commit922ffec6fe52b4aa6f4664b01f2166066ed8c260 (patch)
tree536309ec2cab1b7b5ad0f9d5af2431ce904624e7 /hashmap.h
parent17c8e0b33dc6d0fc975fb4ca1d78d859e77791a6 (diff)
parent7d68bb0766120208f4281f278aac80ebd9951e5c (diff)
downloadgit-922ffec6fe52b4aa6f4664b01f2166066ed8c260.zip
git-922ffec6fe52b4aa6f4664b01f2166066ed8c260.tar.gz
git-922ffec6fe52b4aa6f4664b01f2166066ed8c260.tar.bz2
Merge branch 'rb/hashmap-h-compilation-fix'
Code clean-up. * rb/hashmap-h-compilation-fix: hashmap.h: remove unused variable
Diffstat (limited to 'hashmap.h')
-rw-r--r--hashmap.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/hashmap.h b/hashmap.h
index 7ce79f3..d375d9c 100644
--- a/hashmap.h
+++ b/hashmap.h
@@ -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;