summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandall S. Becker <rsbecker@nexbridge.com>2018-01-14 13:07:48 -0500
committerJunio C Hamano <gitster@pobox.com>2018-01-16 14:27:07 -0800
commit7d68bb0766120208f4281f278aac80ebd9951e5c (patch)
treebdafc30845e74ba062e5838e9cefe40f00aa4c4b
parent8b604d19515c4be18403047045faa363d4de217b (diff)
downloadgit-rb/hashmap-h-compilation-fix.tar.gz
hashmap.h: remove unused variablerb/hashmap-h-compilation-fix
In 'hashmap_enable_item_counting()', item is assigned but never used. This causes a warning on HP NonStop. As the variable is never used, fix this by just removing it. Signed-off-by: Randall S. Becker <rsbecker@nexbridge.com> Helped-by: Thomas Gummerer <t.gummerer@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--hashmap.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/hashmap.h b/hashmap.h
index 7cb29a6aed..c41ce392b7 100644
--- a/hashmap.h
+++ b/hashmap.h
@@ -402,7 +402,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;
@@ -410,7 +409,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;